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

Unified Diff: dart/lib/compiler/implementation/tree/dartstring.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/ssa/nodes.dart ('k') | dart/lib/compiler/implementation/tree/nodes.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/tree/dartstring.dart
diff --git a/dart/lib/compiler/implementation/tree/dartstring.dart b/dart/lib/compiler/implementation/tree/dartstring.dart
index d427bb6499537acff1e1abcea9867943dc142f19..d6b05895fecd6f8db02c0998d20b9dda044eca8e 100644
--- a/dart/lib/compiler/implementation/tree/dartstring.dart
+++ b/dart/lib/compiler/implementation/tree/dartstring.dart
@@ -24,7 +24,7 @@ class DartString implements Iterable<int> {
return new ConsDartString(first, second);
}
const DartString();
- abstract int get length();
+ abstract int get length;
bool isEmpty() => length == 0;
abstract Iterator<int> iterator();
abstract String slowToString();
@@ -41,7 +41,7 @@ class DartString implements Iterable<int> {
return true;
}
String toString() => "DartString#${length}:${slowToString()}";
- abstract SourceString get source();
+ abstract SourceString get source;
}
« no previous file with comments | « dart/lib/compiler/implementation/ssa/nodes.dart ('k') | dart/lib/compiler/implementation/tree/nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698