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