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

Unified Diff: dart/tests/language/const_test.dart

Issue 10829416: Update language tests to 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
« no previous file with comments | « dart/tests/language/compound_assignment_operator_test.dart ('k') | dart/tests/language/field_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/const_test.dart
diff --git a/dart/tests/language/const_test.dart b/dart/tests/language/const_test.dart
index a0b855867ea448872587670c745cf99f95a6f7f5..966bda7595c4617b8fc841ece00456bc364509f9 100644
--- a/dart/tests/language/const_test.dart
+++ b/dart/tests/language/const_test.dart
@@ -12,8 +12,8 @@ class AConst {
class BConst {
const BConst();
set foo(value) {}
- get foo() { return 5; }
-
+ get foo { return 5; }
+
operator [](ix) { return ix; }
operator []=(ix, value) {}
}
« no previous file with comments | « dart/tests/language/compound_assignment_operator_test.dart ('k') | dart/tests/language/field_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698