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

Unified Diff: dart/tests/language/super_closure_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/static_implicit_closure_test.dart ('k') | dart/tests/language/super_field_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/super_closure_test.dart
diff --git a/dart/tests/language/super_closure_test.dart b/dart/tests/language/super_closure_test.dart
index 01331587877111dba17ca4fca8c490c69ea6be80..8681ead2b3efbd578ef0cada8db4522184a3919f 100644
--- a/dart/tests/language/super_closure_test.dart
+++ b/dart/tests/language/super_closure_test.dart
@@ -6,12 +6,12 @@
class Super {
int superX = "super";
- get x() => superX;
+ get x => superX;
}
class Sub extends Super {
var subX = "sub";
- get x() => subX;
+ get x => subX;
buildClosures() => [() => x, () => this.x, () => super.x];
}
« no previous file with comments | « dart/tests/language/static_implicit_closure_test.dart ('k') | dart/tests/language/super_field_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698