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

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

Issue 221873002: Compute frontend/backend specific constants. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes Created 6 years, 8 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 2e5dd423421e4c1cabac929dbe333cc4bc89d8aa..d3dd0309130229ec5021a63f112533f6c26c2fc6 100644
--- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -1040,6 +1040,7 @@ abstract class TypeVariableElement extends Element implements TypedElement {
}
abstract class MetadataAnnotation implements Spannable {
+ /// The front-end constant of this metadata annotation.
Constant get value;
Element get annotatedElement;
int get resolutionState;
@@ -1048,7 +1049,6 @@ abstract class MetadataAnnotation implements Spannable {
// TODO(kasperl): Try to get rid of these.
void set annotatedElement(Element value);
- void set resolutionState(int value);
MetadataAnnotation ensureResolved(Compiler compiler);
}

Powered by Google App Engine
This is Rietveld 408576698