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

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

Issue 13973017: Revert "Revert "Allow multiple tags in native clause."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 7 years, 8 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: tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart b/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
index dc7877f7c6772dc585e7ac48fcc70ecde1ed7f16..30901729bb9dc1cdd306b6a0735ef8ae6dd8f094 100644
--- a/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_class_avoids_hidden_name_frog_test.dart
@@ -6,12 +6,12 @@ import "package:expect/expect.dart";
// Test that hidden native class names are not used by generated code.
-class A native "*B" {
+class A native "B" {
get name => 'A';
static A create() => makeA();
}
-class B native "*C" {
+class B native "C" {
get name => 'B';
static B create() => makeB();
}

Powered by Google App Engine
This is Rietveld 408576698