Index: tests/html/js_type_test.dart |
diff --git a/tests/html/js_type_test.dart b/tests/html/js_type_test.dart |
index 90df68f25f8bae3e2d57f58d3e9f53521c1fcb01..7ab30978f47f60ac1865af1c3feda77d27c8ad3c 100644 |
--- a/tests/html/js_type_test.dart |
+++ b/tests/html/js_type_test.dart |
@@ -14,7 +14,8 @@ import 'js_type_test_lib.dart'; |
class Bar {} |
-@NoInline() @AssumeDynamic() |
+@NoInline() |
+@AssumeDynamic() |
confuse(x) => x; |
class Is<T> { |
@@ -25,7 +26,7 @@ class Is<T> { |
main() { |
useHtmlIndividualConfiguration(); |
- new Is<Foo>().check(new Bar()); // Bar is instantiated by this code. |
+ new Is<Foo>().check(new Bar()); // Bar is instantiated by this code. |
new Is<Foo>().check([]); |
new Is<List>().check([]); |
@@ -142,5 +143,4 @@ main() { |
expect(const Is<Foo>().check(e), isFalse); |
}); |
}); |
- |
} |