HaxeCheckstyle / haxeparser

A Haxe parser for Haxe
61 stars 23 forks source link

Failure to parse multiline string interpolation #43

Open ochalouhi opened 6 years ago

ochalouhi commented 6 years ago

This following compiles fine with haxe, but won't get parsed with haxeparser : class Test { var str = '${ "hello" }'; }