You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[comment from [email protected], published at 24/05/2013, 21:56:55]
That's expected, single-quote strings suffer from unstable economy and turn $$ into $. Another reason is string interpolation (http://haxe.org/manual/string_interpolation).
[comment from [email protected], published at 24/05/2013, 21:58:57]
I know about interpolation. I need know in macros string is simple or with interpolation
[comment from [email protected], published at 24/05/2013, 22:04:02]
Well that's not exactly what you reported, but I see what you mean now. I suppose we can expose Lexer.is_fmt_string to macros.
[Google Issue #1852 : https://code.google.com/p/haxe/issues/detail?id=1852]
by [email protected], at 24/05/2013, 21:51:37
trace(macro "$a"); // EConst(CString($a))
trace(macro '$$a'); // EConst(CString($a))
The text was updated successfully, but these errors were encountered: