Chromium Code Reviews
DescriptionAllow method-calls to getters (assuming they contain closures).
Example:
class A {
var f;
}
main() {
var a = new A();
a.f = () => 499;
print(a.f()); // <== method call to a.f.
}
Committed: https://code.google.com/p/dart/source/detail?r=4351
Patch Set 1 #Patch Set 2 : Cosmetic changes (comments). #
Total comments: 8
Patch Set 3 : Address comments and update status file. #
Messages
Total messages: 3 (0 generated)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||