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

Unified Diff: tests/compiler/dart2js_native/native_mixin_multiple2_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/native_mixin_multiple2_test.dart
diff --git a/tests/compiler/dart2js_native/native_mixin_multiple2_test.dart b/tests/compiler/dart2js_native/native_mixin_multiple2_test.dart
index f59d2e151089ebef3f024c22a772577f016893a3..e3196e17e2b19c6088847472b9a771543023cd1a 100644
--- a/tests/compiler/dart2js_native/native_mixin_multiple2_test.dart
+++ b/tests/compiler/dart2js_native/native_mixin_multiple2_test.dart
@@ -13,8 +13,7 @@ class A {
}
@Native("B")
-class B extends A with M1, M2, M3 {
-}
+class B extends A with M1, M2, M3 {}
class M1 {}
@@ -26,7 +25,7 @@ class M2 {
class M3 {}
-makeB() native;
+makeB() native ;
void setup() native """
function B() {}
@@ -37,9 +36,9 @@ main() {
setup();
B b = makeB();
- Expect.equals('1;2', b.foo(1,2));
+ Expect.equals('1;2', b.foo(1, 2));
Expect.equals('2;null', b.foo(2));
Expect.equals('P 3', b.plain(3));
- Expect.equals('100,4', b.bar(4,100));
+ Expect.equals('100,4', b.bar(4, 100));
Expect.equals('null,5', b.bar(5));
}

Powered by Google App Engine
This is Rietveld 408576698