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

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

Issue 10831332: Support 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
Index: dart/tests/compiler/dart2js_native/native_class_with_dart_methods_frog_test.dart
diff --git a/dart/tests/compiler/dart2js_native/native_class_with_dart_methods_frog_test.dart b/dart/tests/compiler/dart2js_native/native_class_with_dart_methods_frog_test.dart
index cfb773f62ffdf95ea80a3f031eaa9792aaa9b05f..17dc60e92a01342489427ee9116ea5c7d2ab2206 100644
--- a/dart/tests/compiler/dart2js_native/native_class_with_dart_methods_frog_test.dart
+++ b/dart/tests/compiler/dart2js_native/native_class_with_dart_methods_frog_test.dart
@@ -8,7 +8,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;

Powered by Google App Engine
This is Rietveld 408576698