Index: tests/compiler/dart2js_native/native_method_inlining_test.dart |
diff --git a/tests/compiler/dart2js_native/native_method_inlining_test.dart b/tests/compiler/dart2js_native/native_method_inlining_test.dart |
index 07a0620d07b21e9a7d6af39a8a8f1f9b48594db3..269f3a02330a715319d3a98ec9c45341d38db557 100644 |
--- a/tests/compiler/dart2js_native/native_method_inlining_test.dart |
+++ b/tests/compiler/dart2js_native/native_method_inlining_test.dart |
@@ -11,10 +11,10 @@ typedef int Int2Int(int x); |
@Native("A") |
class A { |
- int foo([x, y, z]) native ; |
+ int foo([x, y, z]) native; |
// Calls can be inlined provided they don't pass an argument. |
- int callFun([Int2Int fn]) native ; |
+ int callFun([Int2Int fn]) native; |
} |
class B { |
@@ -49,9 +49,9 @@ class B { |
} |
} |
-A makeA() native ; |
+A makeA() native; |
-String findMethodTextContaining(instance, string) native ; |
+String findMethodTextContaining(instance, string) native; |
void setup() native r""" |
function A() {} |