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

Unified Diff: runtime/lib/invocation_mirror.h

Issue 177633008: Better error message for assignment to final local variables (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 months 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
Index: runtime/lib/invocation_mirror.h
===================================================================
--- runtime/lib/invocation_mirror.h (revision 32974)
+++ runtime/lib/invocation_mirror.h (working copy)
@@ -21,8 +21,9 @@
kGetter = 1,
kSetter = 2,
kField = 3,
+ kLocalVar = 4,
kTypeShift = 0,
- kTypeBits = 2,
+ kTypeBits = 3,
kTypeMask = (1 << kTypeBits) - 1
};

Powered by Google App Engine
This is Rietveld 408576698