Index: tests/html/js_typed_interop_type3_test.dart |
diff --git a/tests/html/js_typed_interop_type3_test.dart b/tests/html/js_typed_interop_type3_test.dart |
index 77f5ee7b2880f417a9f48a8f0905322555fe1546..da4479444af85a3006cbdef37413f1d687c6da00 100644 |
--- a/tests/html/js_typed_interop_type3_test.dart |
+++ b/tests/html/js_typed_interop_type3_test.dart |
@@ -41,6 +41,7 @@ testC(C o) { |
return o.foo; |
} |
+ |
@NoInline() |
testD(D o) { |
return o.foo; |
@@ -51,6 +52,7 @@ testF(F o) { |
return o.foo; |
} |
+ |
_injectJs() { |
document.body.append(new ScriptElement() |
..type = 'text/javascript' |
@@ -82,3 +84,5 @@ main() { |
Expect.equals(testA(d), 4); |
Expect.equals(testD(d), 4); //# 02: continued |
} |
+ |
+ |