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

Unified Diff: sdk/lib/_internal/compiler/implementation/elements/elements.dart

Issue 11729004: Refactor location computation in dart2js mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Location test added. Created 7 years, 12 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: sdk/lib/_internal/compiler/implementation/elements/elements.dart
diff --git a/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
index b237d7bf217301f9fad6bf78179da53f37eaf13b..360800b8b5b7a295e72062e9d88d6c592e05630f 100644
--- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -2161,6 +2161,11 @@ abstract class MetadataAnnotation {
Element annotatedElement;
int resolutionState;
+ /**
+ * The beginning token of this annotation, or [:null:] if it is synthetic.
+ */
+ Token get beginToken;
+
Johnni Winther 2013/01/04 09:57:56 Needed in this CL and not in https://codereview.ch
MetadataAnnotation([this.resolutionState = STATE_NOT_STARTED]);
MetadataAnnotation ensureResolved(Compiler compiler) {

Powered by Google App Engine
This is Rietveld 408576698