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

Unified Diff: dart/tests/compiler/dart2js_extra/closure7_test.dart

Issue 10831332: Support new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments and disable one test. 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
Index: dart/tests/compiler/dart2js_extra/closure7_test.dart
diff --git a/dart/tests/compiler/dart2js_extra/closure7_test.dart b/dart/tests/compiler/dart2js_extra/closure7_test.dart
index 6c29c24bd50d306da878c33b82dde993a7e5ce6c..7722bbe4a328bfac91e77d624a227bf94cb1afdd 100644
--- a/dart/tests/compiler/dart2js_extra/closure7_test.dart
+++ b/dart/tests/compiler/dart2js_extra/closure7_test.dart
@@ -6,7 +6,7 @@ var foo;
bar() => foo(3, 99);
gee(f) => foo(fun: f);
-get foo2() => foo;
+get foo2 => foo;
bar2() => foo2(3, 99);
gee2(f) => foo2(fun: f);
@@ -31,7 +31,7 @@ class A {
static bar() => foo(3, 99);
static gee(f) => foo(fun: f);
- static get foo2() => foo;
+ static get foo2 => foo;
static bar2() => foo2(3, 99);
static gee2(f) => foo2(fun: f);
}

Powered by Google App Engine
This is Rietveld 408576698