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

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

Issue 10880040: Support abstract getters without parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update language.status Created 8 years, 4 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
« no previous file with comments | « dart/lib/compiler/implementation/compiler.dart ('k') | dart/lib/compiler/implementation/js/nodes.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/elements/elements.dart
diff --git a/dart/lib/compiler/implementation/elements/elements.dart b/dart/lib/compiler/implementation/elements/elements.dart
index dd10c069167c01e1b8c95bf0553d1fcb72329dff..49ac60741b5489b744782906127f984a0dcf36dc 100644
--- a/dart/lib/compiler/implementation/elements/elements.dart
+++ b/dart/lib/compiler/implementation/elements/elements.dart
@@ -1059,7 +1059,7 @@ abstract class TypeDeclarationElement implements Element {
*/
// TODO(johnniwinther): Find a (better) way to decouple [typeVariables] from
// [Compiler].
- abstract Link<Type> get typeVariables();
+ abstract Link<Type> get typeVariables;
/**
* Creates the type variables, their type and corresponding element, for the
@@ -1614,7 +1614,7 @@ class MetadataAnnotation {
* The compile-time constant which this annotation resolves to.
* In the mirror system, this would be an object mirror.
*/
- abstract Constant get value();
+ abstract Constant get value;
Element annotatedElement;
int resolutionState;
« no previous file with comments | « dart/lib/compiler/implementation/compiler.dart ('k') | dart/lib/compiler/implementation/js/nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698