| 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 b79f91b24aef5e1a39c17a951cee8d5bf06c410c..31fb465cc28d561ac896572009cb633cc2fa8864 100644
|
| --- a/tests/compiler/dart2js_native/native_method_rename2_frog_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_method_rename2_frog_test.dart
|
| @@ -7,12 +7,12 @@
|
| import "package:expect/expect.dart";
|
| import 'dart:_js_helper' show JSName;
|
|
|
| -class A native "*A" {
|
| +class A native "A" {
|
| @JSName('fooA')
|
| int foo() native;
|
| }
|
|
|
| -class B extends A native "*B" {
|
| +class B extends A native "B" {
|
| @JSName('fooB')
|
| int foo() native;
|
| }
|
|
|