| Index: tests/compiler/dart2js_native/native_class_inheritance2_frog_test.dart
|
| diff --git a/tests/compiler/dart2js_native/native_class_inheritance2_frog_test.dart b/tests/compiler/dart2js_native/native_class_inheritance2_frog_test.dart
|
| index 27819c41d2f07741e539663fe6eaac986375c8e4..7177573baa247af0dd8028bda6c33c48d6dd2146 100644
|
| --- a/tests/compiler/dart2js_native/native_class_inheritance2_frog_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_class_inheritance2_frog_test.dart
|
| @@ -9,18 +9,18 @@ import "package:expect/expect.dart";
|
| // superclass caches the method in the prototype, so shadowing the dispatcher
|
| // stored on Object.prototype.
|
|
|
| -class A native "*A" {
|
| +class A native "A" {
|
| foo([a=100]) native;
|
| }
|
|
|
| -class B extends A native "*B" {
|
| +class B extends A native "B" {
|
| }
|
|
|
| -class C extends B native "*C" {
|
| +class C extends B native "C" {
|
| foo([z=300]) native;
|
| }
|
|
|
| -class D extends C native "*D" {
|
| +class D extends C native "D" {
|
| }
|
|
|
| makeA() native;
|
|
|