Index: tests/compiler/dart2js_native/bound_closure_test.dart |
diff --git a/tests/compiler/dart2js_native/bound_closure_test.dart b/tests/compiler/dart2js_native/bound_closure_test.dart |
index 325f23fa4848270779984986fcb78b2960e05c0e..84d9145958d4c6a7fb329758ed18ab23a112a645 100644 |
--- a/tests/compiler/dart2js_native/bound_closure_test.dart |
+++ b/tests/compiler/dart2js_native/bound_closure_test.dart |
@@ -13,19 +13,19 @@ class AA { |
@Native("BB") |
class BB { |
- foo(a, [b = 'B']) native ; |
+ foo(a, [b = 'B']) native; |
} |
@Native("CC") |
class CC extends BB { |
- foo(a, [b = 'C']) native ; |
+ foo(a, [b = 'C']) native; |
get superfoo => super.foo; |
} |
-makeBB() native ; |
-makeCC() native ; |
-inscrutable(a) native ; |
+makeBB() native; |
+makeCC() native; |
+inscrutable(a) native; |
void setup() native r""" |
function BB() {} |