Chromium Code Reviews
DescriptionModify summary codegen so that builder getters return builders.
This should allow more flexibility in the code that creates summaries,
since it will be possible to things like:
FooBuilder foo = new FooBuilder(bar: new BarBuilder);
foo.bar.baz = ...;
(Previously this would have been disallowed because foo.bar would have
returned a `Foo` rather than a `FooBuilder`, and the `Foo` class doesn't
have a setter for `baz`).
R=scheglov@google.com
Committed: https://github.com/dart-lang/sdk/commit/5e27219e9a2db72145be28edf9f754e25c6d0e3b
Patch Set 1 #
Total comments: 2
Patch Set 2 : Improve behavior of defaults #
Messages
Total messages: 8 (2 generated)
|
||||||||||||||||||||||||||||