Chromium Code Reviews
DescriptionFix instance compound assignment.
We compiled a.y.x += 1 into a.y.x = a.y.x + 1.
Similarly foo().x++ was compiled into foo().x = foo().x + 1.
Now we store the receiver and reuse it on both sides.
Committed: https://code.google.com/p/dart/source/detail?r=6365
Patch Set 1 #
Total comments: 10
Patch Set 2 : Address comments. #Patch Set 3 : trailing whitespace #Patch Set 4 : More tests. #
Messages
Total messages: 5 (0 generated)
|
|||||||||||||||||||||||||||||||||||||