From dc09c69d1607bcb075ff1334107de5e96465ce85 Mon Sep 17 00:00:00 2001 From: George Kurelic Date: Mon, 1 Dec 2025 08:31:38 -0600 Subject: [PATCH] Remove trailing comma to support haxe ver < 4.3 --- hscript/Parser.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscript/Parser.hx b/hscript/Parser.hx index b5a8c2c..3b3cde3 100644 --- a/hscript/Parser.hx +++ b/hscript/Parser.hx @@ -877,7 +877,7 @@ class Parser { mk(ETernary( mk(EBinop("==", mk(EIdent(tmp),pmin(e1),pmax(e1)), mk(EIdent("null"),pmin(e1),pmax(e1)))), mk(EIdent("null"),pmin(e1),pmax(e1)), - e2, + e2 )) ]),pmin(e1)); return e;