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

Unified Diff: dart/tests/language/implicit_this_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/getters_setters_type_test.dart ('k') | dart/tests/language/incr_op_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/implicit_this_test.dart
diff --git a/dart/tests/language/implicit_this_test.dart b/dart/tests/language/implicit_this_test.dart
index fca5977041506f1654411cdd27dd021b2534bdfd..08b0eaaca8b3f202478021cb4904bf22b0993c05 100644
--- a/dart/tests/language/implicit_this_test.dart
+++ b/dart/tests/language/implicit_this_test.dart
@@ -20,7 +20,7 @@ class SubAbstract1 extends Abstract { } /// 01: static type warning
// This class is implicitly abstract as it declares an abstract getter
// method.
class SubAbstract2 extends Abstract {
- abstract get x();
+ abstract get x;
}
// This class does not implement "x" either, but it is not marked
@@ -28,7 +28,7 @@ class SubAbstract2 extends Abstract {
class SubSubAbstract2 extends SubAbstract2 { } /// 04: static type warning
class Concrete extends Abstract {
- get x() => 7;
+ get x => 7;
}
class SubConcrete extends Concrete {
« no previous file with comments | « dart/tests/language/getters_setters_type_test.dart ('k') | dart/tests/language/incr_op_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698