Files
sdk/pkg/compiler/lib
Asger Feldthaus 86f286a3eb dart2js cps: Pull SetFields into field initializer arguments.
For example:

    foo = new D.Foo(null, null);
    foo.x = 'a';
    foo.y = 'b';

becomes:

    foo = new D.Foo('a', 'b');

BUG=
R=sigmund@google.com

Review URL: https://codereview.chromium.org/1671073002 .
2016-02-09 12:33:18 +01:00
..