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

Unified Diff: dart/tests/language/getter_closure_execution_order_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/field_test.dart ('k') | dart/tests/language/getter_no_setter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/getter_closure_execution_order_test.dart
diff --git a/dart/tests/language/getter_closure_execution_order_test.dart b/dart/tests/language/getter_closure_execution_order_test.dart
index 6f95b55615ca54f438eb309fa9895f91c4bf78da..dbdae7afd58b5cbb4d7710350277de6a114ded3d 100644
--- a/dart/tests/language/getter_closure_execution_order_test.dart
+++ b/dart/tests/language/getter_closure_execution_order_test.dart
@@ -8,7 +8,7 @@
var counter = 0;
class Test1 {
- get a() {
+ get a {
Expect.equals(1, counter);
counter++;
return (c) { };
@@ -22,7 +22,7 @@ class Test1 {
}
class Test2 {
- static get a() {
+ static get a {
Expect.equals(0, counter);
counter++;
return (c) { };
@@ -35,7 +35,7 @@ class Test2 {
}
}
-get a() {
+get a {
Expect.equals(0, counter);
counter++;
return (c) { };
« no previous file with comments | « dart/tests/language/field_test.dart ('k') | dart/tests/language/getter_no_setter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698