Chromium Code Reviews
DescriptionRemove more null receiver guards.
Sometimes when we inline methods with conditionals we have a graph
that looks like:
t1.toString;
if (true) // Not actually included in output.
t1.x = ...
This change recognizes that t1 will be 'tested' for null by t1.x, so
t1.toString can be removed.
This is the single-path version of a fix for http://dartbug.com/22577
R=floitsch@google.com, herhut@google.com
Committed: https://code.google.com/p/dart/source/detail?r=44323
Patch Set 1 : #
Messages
Total messages: 7 (3 generated)
|
|||||||||||||||||||