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

Unified Diff: dart/tests/language/setter0_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/resolution_test.dart ('k') | dart/tests/language/setter1_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/setter0_test.dart
diff --git a/dart/tests/language/setter0_test.dart b/dart/tests/language/setter0_test.dart
index 6b0502d75f7448cc148d99820fdc47027551ac2b..e14c6513a85113af3d1fcf6f3b02a6e52c5e7ba4 100644
--- a/dart/tests/language/setter0_test.dart
+++ b/dart/tests/language/setter0_test.dart
@@ -23,7 +23,7 @@ class Second extends First {
void set instance_a(int value) {
a_ = a_ + value;
}
- int get instance_a() {
+ int get instance_a {
return a_;
}
@@ -31,7 +31,7 @@ class Second extends First {
Second.c = value;
}
- static int get static_d() {
+ static int get static_d {
return Second.c;
}
}
« no previous file with comments | « dart/tests/language/resolution_test.dart ('k') | dart/tests/language/setter1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698