| Index: tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
|
| diff --git a/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart b/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
|
| index 222894f667785545f119845e754245f5bd8e0a24..a1116502fc8e840f9bb31b234313cfe531a5b414 100644
|
| --- a/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
|
| @@ -16,11 +16,10 @@ import "package:expect/expect.dart";
|
| // is no place in the Dart language to communicate (3). So we use the following
|
| // fake body technique.
|
|
|
| -
|
| // The exception type.
|
| @Native("E")
|
| class E {
|
| - E._used() native; // Bogus native constructor, called only from fake body.
|
| + E._used() native ; // Bogus native constructor, called only from fake body.
|
|
|
| final int code;
|
| }
|
| @@ -31,7 +30,7 @@ class A {
|
| // Exception class E is created.
|
| @Creates("E")
|
| @Returns('int')
|
| - op(int x) native;
|
| + op(int x) native ;
|
| }
|
|
|
| // This class is here just so that a dynamic context is polymorphic.
|
| @@ -40,7 +39,7 @@ class B {
|
| op(String x) => 123;
|
| }
|
|
|
| -makeA() native;
|
| +makeA() native ;
|
|
|
| void setup1() native """
|
| // Ensure we are not relying on global names 'A' and 'E'.
|
|
|