Index: tests/compiler/dart2js_native/native_method_rename2_frog_test.dart |
diff --git a/tests/compiler/dart2js_native/native_method_rename2_frog_test.dart b/tests/compiler/dart2js_native/native_method_rename2_frog_test.dart |
index 31fb465cc28d561ac896572009cb633cc2fa8864..2fd79c89cdc1cbefa2c5410c885657c49e2262da 100644 |
--- a/tests/compiler/dart2js_native/native_method_rename2_frog_test.dart |
+++ b/tests/compiler/dart2js_native/native_method_rename2_frog_test.dart |
@@ -5,14 +5,16 @@ |
// Test the feature where the native string declares the native method's name. |
import "package:expect/expect.dart"; |
-import 'dart:_js_helper' show JSName; |
+import 'dart:_js_helper' show Native, JSName; |
-class A native "A" { |
+@Native("A") |
+class A { |
@JSName('fooA') |
int foo() native; |
} |
-class B extends A native "B" { |
+@Native("B") |
+class B extends A { |
@JSName('fooB') |
int foo() native; |
} |