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

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

Issue 10831332: Support new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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/closure6_test.dart
diff --git a/dart/tests/compiler/dart2js_extra/closure6_test.dart b/dart/tests/compiler/dart2js_extra/closure6_test.dart
index 8a1291136b53659662dcf2c7f5ea46ccfd3938fe..1fd460da92fa766651d84932129dbc784839e286 100644
--- a/dart/tests/compiler/dart2js_extra/closure6_test.dart
+++ b/dart/tests/compiler/dart2js_extra/closure6_test.dart
@@ -7,7 +7,7 @@ class A {
bar() => foo(3, 99);
gee(f) => foo(fun: f);
- get foo2() => foo;
+ get foo2 => foo;
bar2() => foo2(3, 99);
gee2(f) => foo2(fun: f);
}

Powered by Google App Engine
This is Rietveld 408576698