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
Indeed, the top snippet is what this issue proposes. These snippets demonstrate how the parser would effectively transform the top snippet into the lower snippet.
"hello #{name}"// gets rewritten by the parser to:"hello "+(name).to_s()
becomes:
The parser will parse it as a StringInterpolationNode and a seperate transformation pass will do the rewriting.
The text was updated successfully, but these errors were encountered: