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

Unified Diff: tests/compiler/dart2js_native/bound_closure_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/compiler/dart2js_native/bound_closure_test.dart
diff --git a/tests/compiler/dart2js_native/bound_closure_test.dart b/tests/compiler/dart2js_native/bound_closure_test.dart
index 325f23fa4848270779984986fcb78b2960e05c0e..84d9145958d4c6a7fb329758ed18ab23a112a645 100644
--- a/tests/compiler/dart2js_native/bound_closure_test.dart
+++ b/tests/compiler/dart2js_native/bound_closure_test.dart
@@ -13,19 +13,19 @@ class AA {
@Native("BB")
class BB {
- foo(a, [b = 'B']) native ;
+ foo(a, [b = 'B']) native;
}
@Native("CC")
class CC extends BB {
- foo(a, [b = 'C']) native ;
+ foo(a, [b = 'C']) native;
get superfoo => super.foo;
}
-makeBB() native ;
-makeCC() native ;
-inscrutable(a) native ;
+makeBB() native;
+makeCC() native;
+inscrutable(a) native;
void setup() native r"""
function BB() {}

Powered by Google App Engine
This is Rietveld 408576698