Chromium Code Reviews
Descriptionthe idea is that often times in code, you will see something like this:
lala = "<div>" +
"<span>" +
myvar +
"</span>" +
"</div>";
this patch transforms that code during the parse phase to be:
lala = "<div><span>" + myvar + "</div></span>";
UPDATE: I merged the NewNumberLiteral in the switch case to be < 80 chars. please review my usage of NAN as
default value. I also have had a horrible time getting these tools to work, and couldn't figure out how to
add files (factory.cc/h) to the changeset. hopefully this works.
FIXED: brain fart on BinaryOperation... it's obvious I didn't run the tests :( - speaking of which, they
don't compile for me cause of bad gcc 4.4 detection and hand fixing them is frustrating. that's gonna be my
next patch... *sigh*
Patch Set 1 #Patch Set 2 : '' #
Total comments: 15
Patch Set 3 : '' #Patch Set 4 : '' #
Total comments: 4
Messages
Total messages: 6 (0 generated)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||