| Index: tests/compiler/dart2js_native/subclassing_super_call_test.dart
|
| diff --git a/tests/compiler/dart2js_native/subclassing_super_call_test.dart b/tests/compiler/dart2js_native/subclassing_super_call_test.dart
|
| index be901127e4a86db21c1b317274faf18a118dc0b0..a94c01bf32d77e9d689a417a17be577b38371a49 100644
|
| --- a/tests/compiler/dart2js_native/subclassing_super_call_test.dart
|
| +++ b/tests/compiler/dart2js_native/subclassing_super_call_test.dart
|
| @@ -16,7 +16,7 @@ class N1 {}
|
| class N2 extends N1 {
|
| N2.init();
|
| String text;
|
| - foo() native ;
|
| + foo() native;
|
| }
|
|
|
| class AA extends N2 {
|
| @@ -37,10 +37,10 @@ class BB extends AA {
|
| afun() => super.afun();
|
| }
|
|
|
| -BB makeBB() native ;
|
| +BB makeBB() native;
|
|
|
| @Creates('=Object')
|
| -getBBPrototype() native ;
|
| +getBBPrototype() native;
|
|
|
| void setup() native r"""
|
| function N2() {}
|
|
|