Index: tests/compiler/dart2js_native/native_call_arity1_frog_test.dart |
diff --git a/tests/compiler/dart2js_native/native_call_arity1_frog_test.dart b/tests/compiler/dart2js_native/native_call_arity1_frog_test.dart |
index 624ffb5d8f9ac738d96f016cd5c98389bf10e58a..ed3d13153ac0513c5f2be3b65610a60035f9b308 100644 |
--- a/tests/compiler/dart2js_native/native_call_arity1_frog_test.dart |
+++ b/tests/compiler/dart2js_native/native_call_arity1_frog_test.dart |
@@ -15,19 +15,19 @@ import "package:expect/expect.dart"; |
@Native("A") |
class A { |
- int foo(int x) native; |
+ int foo(int x) native ; |
} |
@Native("B") |
class B { |
- int foo([x, y, z]) native; |
+ int foo([x, y, z]) native ; |
} |
// TODO(sra): Add a case where the parameters have default values. Wait until |
// dart:html need non-null default values. |
-A makeA() native; |
-B makeB() native; |
+A makeA() native ; |
+B makeB() native ; |
void setup() native """ |
function A() {} |
@@ -40,7 +40,6 @@ makeA = function(){return new A;}; |
makeB = function(){return new B;}; |
"""; |
- |
testDynamicContext() { |
var things = [makeA(), makeB()]; |
var a = things[0]; |