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

Unified Diff: dart/tests/compiler/dart2js_native/native_class_avoids_hidden_name_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_avoids_hidden_name_frog_test.dart
diff --git a/dart/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart b/dart/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
index 2d0258463581705861b7f9667b0c006fcdda4b34..ff4be42b2930793adc9982820f701122336220f6 100644
--- a/dart/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
+++ b/dart/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
@@ -5,17 +5,17 @@
// Test that hidden native class names are not used by generated code.
class A native "*B" {
- get name() => 'A';
+ get name => 'A';
static A create() => makeA();
}
class B native "*C" {
- get name() => 'B';
+ get name => 'B';
static B create() => makeB();
}
class C { // Ordinary class with name clashing with native class.
- get name() => 'C';
+ get name => 'C';
static C create() => new C();
}

Powered by Google App Engine
This is Rietveld 408576698