hscript icon indicating copy to clipboard operation
hscript copied to clipboard

Parser and interpreter for Haxe expressions

Results 21 hscript issues
Sort by recently updated
recently updated
newest added

When using `if` without brackets, the scope stays the same and variables can be shadowed: ```haxe var expr = ' var a = "test"; if (true) var a = 42;...

it seems that hscript interpreter could not recognize my classes if I used them into script. ex: I used my class`Main` , I got error when tried to execute: ```...

Hi, Very minor but quite good hygiene, feel free to dismiss if a problem.

..would be nice to have 👍

The error "Invalid iterator" is given. Edit: To clarify this only seems to be problem with Haxe exporting js, it works in Flash. Any recommended work around?

For issue #61 This passes all the tests I wrote over [DleanJeans/hscript-plus](https://github.com/DleanJeans/hscript-plus). Let me know if there's something wrong!

String interpolation does not work on hscript. It would be nice to have it in hscript.

the following test in Test.hx failed when targeting php and python: ``` haxe assertScript("0xBFFFFFFF", 0xBFFFFFFF); ``` The same error is returned by php and python: ``` ERR: Test.hx:16(Test.assertScript) - expected...