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

Unified Diff: dart/tests/language/compound_assignment_operator_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/cascade_precedence_test.dart ('k') | dart/tests/language/const_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/compound_assignment_operator_test.dart
diff --git a/dart/tests/language/compound_assignment_operator_test.dart b/dart/tests/language/compound_assignment_operator_test.dart
index a0c3a3ffc7764f18b533a4887eca4753b4659dde..651a9b9c244fa12d7b1d52b7dc4918090156bb0b 100644
--- a/dart/tests/language/compound_assignment_operator_test.dart
+++ b/dart/tests/language/compound_assignment_operator_test.dart
@@ -20,10 +20,10 @@ class Indexed {
var result;
class A {
- get field() { result.add(1); return 1; }
+ get field { result.add(1); return 1; }
set field(value) {}
- static get static_field() { result.add(0); return 1; }
+ static get static_field { result.add(0); return 1; }
static set static_field(value) { result.add(1); }
}
« no previous file with comments | « dart/tests/language/cascade_precedence_test.dart ('k') | dart/tests/language/const_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698