Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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)

AltStyle によって変換されたページ (->オリジナル) /