Index: tests/compiler/dart2js_native/native_no_such_method_exception_frog_test.dart |
diff --git a/tests/compiler/dart2js_native/native_no_such_method_exception_frog_test.dart b/tests/compiler/dart2js_native/native_no_such_method_exception_frog_test.dart |
index 007de7fdfa493e5e95f4bdc4b0560a535273a302..231910620fee80827e6021ea9e3b249dc0758be6 100644 |
--- a/tests/compiler/dart2js_native/native_no_such_method_exception_frog_test.dart |
+++ b/tests/compiler/dart2js_native/native_no_such_method_exception_frog_test.dart |
@@ -2,13 +2,16 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+import "dart:_js_helper"; |
import "package:expect/expect.dart"; |
-class A native "A" { |
+@Native("A") |
+class A { |
bar() => 42; |
} |
-class B native "B" { |
+@Native("B") |
+class B { |
foo() => 42; |
} |