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

Unified Diff: dart/tests/compiler/dart2js_native/native_class_inheritance4_frog_test.dart

Issue 10831332: Support new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments and disable one test. 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
Index: dart/tests/compiler/dart2js_native/native_class_inheritance4_frog_test.dart
diff --git a/dart/tests/compiler/dart2js_native/native_class_inheritance4_frog_test.dart b/dart/tests/compiler/dart2js_native/native_class_inheritance4_frog_test.dart
index 1ca9606a46049184d2b449803399475e95f8f346..b0d1f5b7c4b7ce0326b1f733bdfac42fb7b96131 100644
--- a/dart/tests/compiler/dart2js_native/native_class_inheritance4_frog_test.dart
+++ b/dart/tests/compiler/dart2js_native/native_class_inheritance4_frog_test.dart
@@ -9,7 +9,7 @@
class A native "*A" {
var _field;
- int get X() => _field;
+ int get X => _field;
void set X(int x) { _field = x; }
int method(int z) => _field + z;
@@ -18,7 +18,7 @@ class A native "*A" {
class B extends A native "*B" {
var _field2;
- int get X() => _field2;
+ int get X => _field2;
void set X(int x) { _field2 = x; }
int method(int z) => _field2 + z;

Powered by Google App Engine
This is Rietveld 408576698