Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(438)

Unified Diff: tests/html/js_typed_interop_type_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
-
-

Powered by Google App Engine
This is Rietveld 408576698