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

Unified Diff: tests/compiler/dart2js/world_test.dart

Issue 2990223002: Reformat untouched files. (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « tests/compiler/dart2js/union_type_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/world_test.dart
diff --git a/tests/compiler/dart2js/world_test.dart b/tests/compiler/dart2js/world_test.dart
index 1a3823a7d918b0237a8def408dbb87b9ad442904..efeed19a660b9bb9e116c4964b0d0b110814d6a7 100644
--- a/tests/compiler/dart2js/world_test.dart
+++ b/tests/compiler/dart2js/world_test.dart
@@ -24,8 +24,7 @@ void main() {
}
testClassSets() async {
- var env = await TypeEnvironment.create(
- r"""
+ var env = await TypeEnvironment.create(r"""
class A implements X {}
class B {}
class C_Super extends A {}
@@ -35,8 +34,7 @@ testClassSets() async {
class F extends Object with A implements B {}
class G extends Object with A, B {}
class X {}
- """,
- mainSource: r"""
+ """, mainSource: r"""
import 'dart:html' as html;
main() {
new A();
@@ -49,8 +47,7 @@ testClassSets() async {
html.window;
new html.Worker('');
}
- """,
- useMockCompiler: false);
+ """, useMockCompiler: false);
ClosedWorld closedWorld = env.closedWorld;
ClassElement Object_ = env.getElement("Object");
@@ -182,8 +179,7 @@ testClassSets() async {
}
testProperties() async {
- var env = await TypeEnvironment.create(
- r"""
+ var env = await TypeEnvironment.create(r"""
class A {}
class A1 extends A {}
class A2 implements A {}
@@ -225,8 +221,7 @@ testProperties() async {
class H2 extends H1 {}
class H3 extends H2 implements H {}
class H4 extends H2 with H {}
- """,
- mainSource: r"""
+ """, mainSource: r"""
main() {
new B();
new C1();
@@ -238,8 +233,7 @@ testProperties() async {
new G3();
new H4();
}
- """,
- useMockCompiler: false);
+ """, useMockCompiler: false);
ClosedWorld closedWorld = env.closedWorld;
check(String name, {bool hasStrictSubtype, bool hasOnlySubclasses}) {
« no previous file with comments | « tests/compiler/dart2js/union_type_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698