Index: tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart |
diff --git a/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart b/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart |
index 900b011af624afddaede08e2cd4abc00dfa27d14..3f61c3202e113f3f6828a86584e47b88523fd6dd 100644 |
--- a/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart |
+++ b/tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart |
@@ -14,21 +14,21 @@ class A1 {} |
@Native("B1") |
class B1 extends A1 {} |
-makeA1() native ; |
-makeB1() native ; |
+makeA1() native; |
+makeB1() native; |
@Native("A2") |
class A2 { |
- foo([a = 99]) native ; |
+ foo([a = 99]) native; |
} |
@Native("B2") |
class B2 extends A2 {} |
-makeA2() native ; |
-makeB2() native ; |
+makeA2() native; |
+makeB2() native; |
-makeObject() native ; |
+makeObject() native; |
void setup() native """ |
// This code is all inside 'setup' and so not accesible from the global scope. |