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

Unified Diff: dart/tests/language/instance_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/incr_op_test.dart ('k') | dart/tests/language/interface_inherit_field_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/instance_compound_assignment_operator_test.dart
diff --git a/dart/tests/language/instance_compound_assignment_operator_test.dart b/dart/tests/language/instance_compound_assignment_operator_test.dart
index f27528953f002a65148eb8ad54ff7bf27c3fe592..a69cbe6bc4d5f90688e72c6a578694d8ec380cc9 100644
--- a/dart/tests/language/instance_compound_assignment_operator_test.dart
+++ b/dart/tests/language/instance_compound_assignment_operator_test.dart
@@ -12,7 +12,7 @@ class A {
var _g = 0;
var gGetCount = 0;
var gSetCount = 0;
- get g() {
+ get g {
gGetCount++;
return _g;
}
@@ -25,7 +25,7 @@ class A {
class B {
B() : _a = new A(), count = 0 {}
- get a() {
+ get a {
count++;
return _a;
}
« no previous file with comments | « dart/tests/language/incr_op_test.dart ('k') | dart/tests/language/interface_inherit_field_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698