Chromium Code Reviews
DescriptionFix access to fields that didn't exist in the class.
Say we have
class A{}
class B extends A { var x; }
and somewhere:
new A().x;
Then we would see if there was only one field 'x' in the whole type-hierarchy
(including B), but we failed to verify that the field was accessible from A.
Committed: https://code.google.com/p/dart/source/detail?r=10841
Patch Set 1 #Patch Set 2 : Fix type annotation. #
Total comments: 2
Patch Set 3 : Address comment. #Patch Set 4 : Rebase. #Messages
Total messages: 3 (0 generated)
|