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

Unified Diff: dart/tests/compiler/dart2js_foreign/native_property_test.dart

Issue 10880040: Support abstract getters without parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update language.status 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/lib/compiler/implementation/tree/nodes.dart ('k') | dart/tests/language/abstract_getter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/compiler/dart2js_foreign/native_property_test.dart
diff --git a/dart/tests/compiler/dart2js_foreign/native_property_test.dart b/dart/tests/compiler/dart2js_foreign/native_property_test.dart
index e4643b67f68d8372c04f54d7ba9d9fbb26002890..23d2a9c18466f30014d45f21be51372f73fce492 100644
--- a/dart/tests/compiler/dart2js_foreign/native_property_test.dart
+++ b/dart/tests/compiler/dart2js_foreign/native_property_test.dart
@@ -15,19 +15,19 @@ class A {
void setX(int value);
@native
- int get X();
+ int get X;
@native
set X(int value);
@native
- int get Y();
+ int get Y;
@native
set Y(int value);
@native('return this._z;')
- int get Z();
+ int get Z;
@native('this._z = value;')
set Z(int value);
« no previous file with comments | « dart/lib/compiler/implementation/tree/nodes.dart ('k') | dart/tests/language/abstract_getter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698