DescriptionRemove the initial empty string from quasi-literals, if possible.
`${x} + ${y}` ==> (x + " + " + y)
`${x}${y}++` ==> ("" + x + y + "++")
"Default template string can be simplified"
BUG=http://code.google.com/p/traceur-compiler/issues/detail?id=133
Patch Set 1 #Patch Set 2 : Clean up the control flow a bit. #
Total comments: 2
Patch Set 3 : Fix formatting, add more tests. #Patch Set 4 : Merge in master again because the tree is changing a lot. #MessagesTotal messages: 6
|