Index: tests/html/js_typed_interop_type_test.dart |
diff --git a/tests/html/js_typed_interop_type_test.dart b/tests/html/js_typed_interop_type_test.dart |
index 59266dc13ee51c90315810dbc0cd7ee3db70c164..093d934c0259d419e935171ec53228e440402aa9 100644 |
--- a/tests/html/js_typed_interop_type_test.dart |
+++ b/tests/html/js_typed_interop_type_test.dart |
@@ -2,7 +2,6 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
- |
@JS() |
library js_typed_interop_type_test; |
@@ -57,19 +56,16 @@ testA(A o) { |
return o.foo; |
} |
- |
@NoInline() |
testB(B o) { |
return o.foo; |
} |
- |
@NoInline() |
testC(C o) { |
return o.foo; |
} |
- |
@NoInline() |
testD(D o) { |
return o.foo; |
@@ -85,7 +81,6 @@ testF(F o) { |
return o.foo; |
} |
- |
_injectJs() { |
document.body.append(new ScriptElement() |
..type = 'text/javascript' |
@@ -162,5 +157,3 @@ main() { |
expectValueOrTypeError(() => testF(e), 5); |
Expect.equals(testF(f), 6); |
} |
- |
- |