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

Unified Diff: tests/compiler/dart2js_native/browser_compat_2_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/browser_compat_2_test.dart
diff --git a/tests/compiler/dart2js_native/browser_compat_2_test.dart b/tests/compiler/dart2js_native/browser_compat_2_test.dart
index 858a06797930313c8ce2436ed57c7993119bfeba..eeb87fa28d16f726cbf96995a838628af12d01f9 100644
--- a/tests/compiler/dart2js_native/browser_compat_2_test.dart
+++ b/tests/compiler/dart2js_native/browser_compat_2_test.dart
@@ -11,31 +11,31 @@ import "package:expect/expect.dart";
@Native("T1A")
class T1A {
- foo() native;
+ foo() native ;
}
@Native("T1B")
class T1B {
- foo() native;
+ foo() native ;
}
@Native("T1C")
class T1C {
- foo() native;
+ foo() native ;
}
@Native("T1D")
class T1D {
- foo() native;
+ foo() native ;
}
-makeT1A() native;
-makeT1B() native;
-makeT1C() native;
-makeT1D() native;
+makeT1A() native ;
+makeT1B() native ;
+makeT1C() native ;
+makeT1D() native ;
-int getTagCallCount() native;
-void clearTagCallCount() native;
+int getTagCallCount() native ;
+void clearTagCallCount() native ;
void setup() native r'''
function T1A() { this.v = "a"; }

Powered by Google App Engine
This is Rietveld 408576698