Fixed Ternar visit (can cause invalid reg declarations)

This commit is contained in:
Jindra Petřík
2021-11-27 17:54:41 +01:00
parent 35a680485f
commit 934a5756f9
2 changed files with 2 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ public class TernarOpItem extends GraphTargetItem {
@Override
public void visit(GraphTargetVisitorInterface visitor) {
visitor.visit(expression);
visitor.visit(onTrue);
visitor.visit(onFalse);
}