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

Unified Diff: tests/compiler/dart2js_native/native_mixin_with_plain_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_with_plain_test.dart
diff --git a/tests/compiler/dart2js_native/native_mixin_with_plain_test.dart b/tests/compiler/dart2js_native/native_mixin_with_plain_test.dart
index 3708603d52500080fc5efbbe1884e4f6748678c0..92377a10e989631638834608732a893928c43026 100644
--- a/tests/compiler/dart2js_native/native_mixin_with_plain_test.dart
+++ b/tests/compiler/dart2js_native/native_mixin_with_plain_test.dart
@@ -38,9 +38,8 @@ class D extends C with M {
get mm => 'D.mm($cc)';
}
-
-makeA() native;
-makeB() native;
+makeA() native ;
+makeB() native ;
void setup() native """
function A() {this.aa = 'aa'}
@@ -52,7 +51,7 @@ makeB = function(){return new B;};
main() {
setup();
var things = [makeA, makeB, () => new C(), () => new D(), () => new M()]
- .map((f)=>f())
+ .map((f) => f())
.toList();
var a = things[0];
var b = things[1];
@@ -104,5 +103,4 @@ main() {
Expect.isTrue(d is C);
Expect.isTrue(d is D);
Expect.isTrue(d is M);
-
}

Powered by Google App Engine
This is Rietveld 408576698