Skip to content

Commit f6f8ba9

Browse files
authored
[CI] Fix JS with hscriptPos error (#133)
1 parent acdf040 commit f6f8ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hscript/JsInterp.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class JsInterp extends Interp {
8080
#if hscriptPos
8181
var expr = curExpr;
8282
var p = '{pmin:,pmax:,origin:"",line:}';
83-
return '($$i._p(${expr.pmin},${expr.pmax},${expr.origin},${expr.line}),$estr)';
83+
return '($$i._p(${expr.pmin},${expr.pmax},"${expr.origin}",${expr.line}),$estr)';
8484
#else
8585
return estr;
8686
#end

0 commit comments

Comments
 (0)