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

Unified Diff: tests/compiler/dart2js_native/native_class_inheritance3_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_inheritance3_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart b/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart
index 2f93bd23eb815f50b6a4c7b394c9c3337e96b396..aff63454665c9045365e106ec32a76e1148d7bfc 100644
--- a/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart
@@ -8,21 +8,21 @@ import "package:expect/expect.dart";
// interferes with subsequent resolving of the method. This might happen if the
// noSuchMethod is cached on Object.prototype.
-class A1 native "*A1" {
+class A1 native "A1" {
}
-class B1 extends A1 native "*B1" {
+class B1 extends A1 native "B1" {
}
makeA1() native;
makeB1() native;
-class A2 native "*A2" {
+class A2 native "A2" {
foo([a=99]) native;
}
-class B2 extends A2 native "*B2" {
+class B2 extends A2 native "B2" {
}
makeA2() native;

Powered by Google App Engine
This is Rietveld 408576698