Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: frog/library.dart

Issue 8802025: Simple fix to get noSuchMethod working on private members (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | frog/minfrog » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/library.dart
diff --git a/frog/library.dart b/frog/library.dart
index 38b4539669e1cee8dc4db15b2309ec3622f70cdd..2bf79ebfb8521f1f8ae622986e33891b12517e4c 100644
--- a/frog/library.dart
+++ b/frog/library.dart
@@ -98,7 +98,7 @@ class Library extends Element {
}
}
- mset = new MemberSet(member);
+ mset = new MemberSet(member, isVar:true);
_privateMembers[member.name] = mset;
} else {
mset.members.add(member);
« no previous file with comments | « no previous file | frog/minfrog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698