Skip to content

Commit acfe6e0

Browse files
WIP fix missing null input as ctrl
1 parent e8eb5df commit acfe6e0

File tree

1 file changed

+1
-1
lines changed
  • seaofnodes/src/main/java/com/compilerprogramming/ezlang/compiler/nodes

1 file changed

+1
-1
lines changed

seaofnodes/src/main/java/com/compilerprogramming/ezlang/compiler/nodes/ArithNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
public abstract class ArithNode extends Node {
1111
// Source location for late reported errors
1212

13-
public ArithNode(Node lhs, Node rhs) { super(lhs, rhs); }
13+
public ArithNode(Node lhs, Node rhs) { super(null, lhs, rhs); }
1414
@Override public String glabel() { return op(); }
1515
abstract String op();
1616

0 commit comments

Comments
 (0)