Skip to content

Commit 22b3f59

Browse files
authored
Remove trailing comma to support haxe ver < 4.3 (#156)
1 parent a1d6080 commit 22b3f59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hscript/Parser.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ class Parser {
878878
mk(ETernary(
879879
mk(EBinop("==", mk(EIdent(tmp),pmin(e1),pmax(e1)), mk(EIdent("null"),pmin(e1),pmax(e1)))),
880880
mk(EIdent("null"),pmin(e1),pmax(e1)),
881-
e2,
881+
e2
882882
))
883883
]),pmin(e1));
884884
return e;

0 commit comments

Comments
 (0)