Reformat tests/language/a-e using 3.8 style.
Change-Id: I5cfab9212bb78809967de323b60ebb06913b84d1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/425149
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Lasse Nielsen <lrn@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
diff --git a/tests/language/abstract/getter2_test.dart b/tests/language/abstract/getter2_test.dart
index f2545dd..a12a105 100644
--- a/tests/language/abstract/getter2_test.dart
+++ b/tests/language/abstract/getter2_test.dart
@@ -52,17 +52,15 @@
/// Tests that overriding either the getter or setter with an abstract member
/// has no effect.
/// Regression test for https://github.com/dart-lang/sdk/issues/29914
- var c1 =
- AbstractGetterOverride1()
- ..foo = 123
- ..bar = 456;
+ var c1 = AbstractGetterOverride1()
+ ..foo = 123
+ ..bar = 456;
Expect.equals(c1.foo, 123);
Expect.equals(c1.bar, 456);
- var c2 =
- AbstractGetterOverride2()
- ..foo = 123
- ..bar = 456;
+ var c2 = AbstractGetterOverride2()
+ ..foo = 123
+ ..bar = 456;
Expect.equals(c2.foo, 123);
Expect.equals(c2.bar, 456);
}
diff --git a/tests/language/assert/initializer_test.dart b/tests/language/assert/initializer_test.dart
index d62f7bd..a8801af 100644
--- a/tests/language/assert/initializer_test.dart
+++ b/tests/language/assert/initializer_test.dart
@@ -96,14 +96,13 @@
bool assertionsEnabled = false;
assert(assertionsEnabled = true);
- void Function(C Function()) doTest =
- (assertionsEnabled && x >= y)
- ? (f) {
- Expect.throwsAssertionError(f);
- }
- : (f) {
- Expect.equals(x, f().x);
- };
+ void Function(C Function()) doTest = (assertionsEnabled && x >= y)
+ ? (f) {
+ Expect.throwsAssertionError(f);
+ }
+ : (f) {
+ Expect.equals(x, f().x);
+ };
doTest(() => new C.c01(x, y));
doTest(() => new C.c02(x, y));
diff --git a/tests/language/async/congruence_unnamed_test.dart b/tests/language/async/congruence_unnamed_test.dart
index 0aef8ad..9716216 100644
--- a/tests/language/async/congruence_unnamed_test.dart
+++ b/tests/language/async/congruence_unnamed_test.dart
@@ -106,11 +106,11 @@
}
};
- Future<A> Function() f_expressionSyntax_B =
- () async => false ? new A() : new B();
+ Future<A> Function() f_expressionSyntax_B = () async =>
+ false ? new A() : new B();
- Future<A> Function() f_expressionSyntax_FutureB =
- () async => false ? futureA() : futureB();
+ Future<A> Function() f_expressionSyntax_FutureB = () async =>
+ false ? futureA() : futureB();
// Not executed
void checkStaticTypes() {
diff --git a/tests/language/await/await_with_no_context_test.dart b/tests/language/await/await_with_no_context_test.dart
index 8ac64d4..caa2b00 100644
--- a/tests/language/await/await_with_no_context_test.dart
+++ b/tests/language/await/await_with_no_context_test.dart
@@ -56,8 +56,9 @@
// Target of a property set
(await ((null as Future<B>?) ??
- (Future.value(C())..expectStaticType<Exactly<Future<C>>>())))
- .prop = 0;
+ (Future.value(C())..expectStaticType<Exactly<Future<C>>>())))
+ .prop =
+ 0;
// Target of a property get
(await ((null as Future<B>?) ??
diff --git a/tests/language/call/implicit_tearoff_exceptions_test.dart b/tests/language/call/implicit_tearoff_exceptions_test.dart
index e9edd8d..8443deb 100644
--- a/tests/language/call/implicit_tearoff_exceptions_test.dart
+++ b/tests/language/call/implicit_tearoff_exceptions_test.dart
@@ -113,7 +113,7 @@
bFalse
? d
: ((c ?? a) // ignore: dead_null_aware_expression
- ..expectStaticType<Exactly<A>>()),
+ ..expectStaticType<Exactly<A>>()),
),
);
@@ -132,7 +132,7 @@
bFalse
? d
: (((c) ?? a) // ignore: dead_null_aware_expression
- ..expectStaticType<Exactly<A>>()),
+ ..expectStaticType<Exactly<A>>()),
),
);
Expect.throws(
@@ -145,7 +145,7 @@
bFalse
? d
: ((((c)) ?? a) // ignore: dead_null_aware_expression
- ..expectStaticType<Exactly<A>>()),
+ ..expectStaticType<Exactly<A>>()),
),
);
Expect.throws(
diff --git a/tests/language/cascade/in_expression_function_test.dart b/tests/language/cascade/in_expression_function_test.dart
index add9c5a..88f9529 100644
--- a/tests/language/cascade/in_expression_function_test.dart
+++ b/tests/language/cascade/in_expression_function_test.dart
@@ -5,16 +5,14 @@
import "package:expect/expect.dart";
-makeMap() =>
- new Map()
- ..[3] = 4
- ..[0] = 11;
+makeMap() => new Map()
+ ..[3] = 4
+ ..[0] = 11;
class MyClass {
- foo() =>
- this
- ..bar(3)
- ..baz(4);
+ foo() => this
+ ..bar(3)
+ ..baz(4);
bar(x) => x;
baz(y) => y * 2;
}
diff --git a/tests/language/cascade/in_initializer_list_test.dart b/tests/language/cascade/in_initializer_list_test.dart
index 0a45688..e0a4303 100644
--- a/tests/language/cascade/in_initializer_list_test.dart
+++ b/tests/language/cascade/in_initializer_list_test.dart
@@ -14,14 +14,12 @@
final y;
B(a)
- : x =
- a
- ..foo()
- ..bar(),
- y =
- a
- ..foo()
- ..bar() {}
+ : x = a
+ ..foo()
+ ..bar(),
+ y = a
+ ..foo()
+ ..bar() {}
}
main() {
diff --git a/tests/language/cascade/nested_test.dart b/tests/language/cascade/nested_test.dart
index 7e40331..e0d8649 100644
--- a/tests/language/cascade/nested_test.dart
+++ b/tests/language/cascade/nested_test.dart
@@ -14,10 +14,9 @@
}
main() {
- var bar =
- new Bar()
- ..foo = (new Foo()..x = 42)
- ..y = 38;
+ var bar = new Bar()
+ ..foo = (new Foo()..x = 42)
+ ..y = 38;
Expect.isTrue(bar is Bar);
Expect.isTrue(bar.foo is Foo);
Expect.equals(bar.foo.x, 42);
diff --git a/tests/language/cascade/on_static_field_test.dart b/tests/language/cascade/on_static_field_test.dart
index 4f394cc..6602307 100644
--- a/tests/language/cascade/on_static_field_test.dart
+++ b/tests/language/cascade/on_static_field_test.dart
@@ -2,11 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-final List<String> list =
- []
- ..add("foo")
- ..add("bar")
- ..add("baz");
+final List<String> list = []
+ ..add("foo")
+ ..add("bar")
+ ..add("baz");
main() {
print(list);
diff --git a/tests/language/cascade/precedence_test.dart b/tests/language/cascade/precedence_test.dart
index 3e42255..5982141 100644
--- a/tests/language/cascade/precedence_test.dart
+++ b/tests/language/cascade/precedence_test.dart
@@ -171,19 +171,17 @@
Box originalBox = box;
// Should parse as:
// box = (box..x = (a.value == 21 ? b : c)..x.test(117));
- box =
- box
- ..x = a.value == 21 ? b : c
- ..x.test(117);
+ box = box
+ ..x = a.value == 21 ? b : c
+ ..x.test(117);
Expect.equals(originalBox, box);
Expect.equals(box.value, b);
// New cascades are allowed inside an expressionWithoutCascade if properly
// delimited.
box
- ..x =
- (a
- ..set(42)
- ..test(42))
+ ..x = (a
+ ..set(42)
+ ..test(42))
..x.test(42);
}
diff --git a/tests/language/class/cyclic_class_member_test.dart b/tests/language/class/cyclic_class_member_test.dart
index 616a3d3..db51cb8 100644
--- a/tests/language/class/cyclic_class_member_test.dart
+++ b/tests/language/class/cyclic_class_member_test.dart
@@ -5,9 +5,9 @@
// Test that class with a cyclic hierarchy doesn't cause a loop in dart2js.
class A extends A {
-// ^
-// [analyzer] COMPILE_TIME_ERROR.RECURSIVE_INTERFACE_INHERITANCE
-// [cfe] 'A' is a supertype of itself.
+ // ^
+ // [analyzer] COMPILE_TIME_ERROR.RECURSIVE_INTERFACE_INHERITANCE
+ // [cfe] 'A' is a supertype of itself.
// When checking that foo isn't overriding an instance method in the
// superclass, dart2js might loop.
diff --git a/tests/language/class_modifiers/base/base_class_extend_not_base_final_error_test.dart b/tests/language/class_modifiers/base/base_class_extend_not_base_final_error_test.dart
index 61565c9..74102a3 100644
--- a/tests/language/class_modifiers/base/base_class_extend_not_base_final_error_test.dart
+++ b/tests/language/class_modifiers/base/base_class_extend_not_base_final_error_test.dart
@@ -16,4 +16,3 @@
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.SUBTYPE_OF_BASE_OR_FINAL_IS_NOT_BASE_FINAL_OR_SEALED
// [cfe] The type 'BOutside' must be 'base', 'final' or 'sealed' because the supertype 'BaseClass' is 'base'.
-
diff --git a/tests/language/class_modifiers/base/base_class_implement_error_test.dart b/tests/language/class_modifiers/base/base_class_implement_error_test.dart
index 8546252..42a2c2c 100644
--- a/tests/language/class_modifiers/base/base_class_implement_error_test.dart
+++ b/tests/language/class_modifiers/base/base_class_implement_error_test.dart
@@ -22,4 +22,3 @@
// ^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INVALID_USE_OF_TYPE_OUTSIDE_LIBRARY
// [cfe] The class 'ClassForEnum' can't be implemented outside of its library because it's a base class.
-
diff --git a/tests/language/class_modifiers/base/base_class_inside_not_base_final_sealed_error_test.dart b/tests/language/class_modifiers/base/base_class_inside_not_base_final_sealed_error_test.dart
index 38a4ad5..71285ad 100644
--- a/tests/language/class_modifiers/base/base_class_inside_not_base_final_sealed_error_test.dart
+++ b/tests/language/class_modifiers/base/base_class_inside_not_base_final_sealed_error_test.dart
@@ -68,4 +68,3 @@
// ^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.SUBTYPE_OF_BASE_OR_FINAL_IS_NOT_BASE_FINAL_OR_SEALED
// [cfe] The type 'IndirectSubtype' must be 'base', 'final' or 'sealed' because the supertype 'BaseClass' is 'base'.
-
diff --git a/tests/language/class_modifiers/base/base_mixin_implement_error_test.dart b/tests/language/class_modifiers/base/base_mixin_implement_error_test.dart
index 327c9aa..215ac7e 100644
--- a/tests/language/class_modifiers/base/base_mixin_implement_error_test.dart
+++ b/tests/language/class_modifiers/base/base_mixin_implement_error_test.dart
@@ -22,4 +22,3 @@
// ^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INVALID_USE_OF_TYPE_OUTSIDE_LIBRARY
// [cfe] The mixin 'MixinForEnum' can't be implemented outside of its library because it's a base mixin.
-
diff --git a/tests/language/class_modifiers/base/base_mixin_with_not_base_final_error_test.dart b/tests/language/class_modifiers/base/base_mixin_with_not_base_final_error_test.dart
index e757583..6679f11 100644
--- a/tests/language/class_modifiers/base/base_mixin_with_not_base_final_error_test.dart
+++ b/tests/language/class_modifiers/base/base_mixin_with_not_base_final_error_test.dart
@@ -16,4 +16,3 @@
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.SUBTYPE_OF_BASE_OR_FINAL_IS_NOT_BASE_FINAL_OR_SEALED
// [cfe] The type 'BOutside' must be 'base', 'final' or 'sealed' because the supertype 'BaseMixin' is 'base'.
-
diff --git a/tests/language/class_modifiers/final/final_class_implement_outside_error_test.dart b/tests/language/class_modifiers/final/final_class_implement_outside_error_test.dart
index 15bf39f..d231abf 100644
--- a/tests/language/class_modifiers/final/final_class_implement_outside_error_test.dart
+++ b/tests/language/class_modifiers/final/final_class_implement_outside_error_test.dart
@@ -22,4 +22,3 @@
// ^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INVALID_USE_OF_TYPE_OUTSIDE_LIBRARY
// [cfe] The class 'ClassForEnum' can't be implemented outside of its library because it's a final class.
-
diff --git a/tests/language/class_modifiers/final/final_class_inside_not_base_final_sealed_error_test.dart b/tests/language/class_modifiers/final/final_class_inside_not_base_final_sealed_error_test.dart
index 27145e3..56dcfd4 100644
--- a/tests/language/class_modifiers/final/final_class_inside_not_base_final_sealed_error_test.dart
+++ b/tests/language/class_modifiers/final/final_class_inside_not_base_final_sealed_error_test.dart
@@ -49,4 +49,3 @@
// ^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.SUBTYPE_OF_BASE_OR_FINAL_IS_NOT_BASE_FINAL_OR_SEALED
// [cfe] The type 'IndirectSubtype' must be 'base', 'final' or 'sealed' because the supertype 'FinalClass' is 'final'.
-
diff --git a/tests/language/class_modifiers/interface/interface_class_typedef_extend_error_test.dart b/tests/language/class_modifiers/interface/interface_class_typedef_extend_error_test.dart
index 66b8cf0..f54bd33 100644
--- a/tests/language/class_modifiers/interface/interface_class_typedef_extend_error_test.dart
+++ b/tests/language/class_modifiers/interface/interface_class_typedef_extend_error_test.dart
@@ -11,4 +11,3 @@
// ^^^^^^^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INVALID_USE_OF_TYPE_OUTSIDE_LIBRARY
// [cfe] The class 'InterfaceClass' can't be extended outside of its library because it's an interface class.
-
diff --git a/tests/language/class_modifiers/interface/interface_class_typedef_used_outside_error_test.dart b/tests/language/class_modifiers/interface/interface_class_typedef_used_outside_error_test.dart
index 2dcf0ae..aa7d8a4 100644
--- a/tests/language/class_modifiers/interface/interface_class_typedef_used_outside_error_test.dart
+++ b/tests/language/class_modifiers/interface/interface_class_typedef_used_outside_error_test.dart
@@ -14,4 +14,3 @@
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INVALID_USE_OF_TYPE_OUTSIDE_LIBRARY
// [cfe] The class 'InterfaceClass' can't be extended outside of its library because it's an interface class.
-
diff --git a/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_generative_constructor_error_test.dart b/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_generative_constructor_error_test.dart
index f092846..b1c10a3 100644
--- a/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_generative_constructor_error_test.dart
+++ b/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_generative_constructor_error_test.dart
@@ -18,4 +18,3 @@
// [cfe] Can't use 'GenerativeConstructorClass' as a mixin because it has constructors.
// ^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.MIXIN_CLASS_DECLARES_CONSTRUCTOR
-
diff --git a/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_superclass_not_object_error_test.dart b/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_superclass_not_object_error_test.dart
index 5e7461e..3c93dd2 100644
--- a/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_superclass_not_object_error_test.dart
+++ b/tests/language/class_modifiers/mixin/mixin_class_no_modifier_old_version_superclass_not_object_error_test.dart
@@ -18,4 +18,3 @@
// ^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.MIXIN_INHERITS_FROM_NOT_OBJECT
// [cfe] The class 'NonObjectSuperclassClass' can't be used as a mixin because it extends a class other than 'Object'.
-
diff --git a/tests/language/class_modifiers/mixin/mixin_class_no_modifier_outside_library_error_test.dart b/tests/language/class_modifiers/mixin/mixin_class_no_modifier_outside_library_error_test.dart
index bc9afb3..8bf3aa8 100644
--- a/tests/language/class_modifiers/mixin/mixin_class_no_modifier_outside_library_error_test.dart
+++ b/tests/language/class_modifiers/mixin/mixin_class_no_modifier_outside_library_error_test.dart
@@ -40,4 +40,3 @@
// ^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.CLASS_USED_AS_MIXIN
// [cfe] The class 'AbstractClass' can't be used as a mixin because it isn't a mixin class nor a mixin.
-
diff --git a/tests/language/closure/closures_with_complex_params_test.dart b/tests/language/closure/closures_with_complex_params_test.dart
index d626d51..175999a 100644
--- a/tests/language/closure/closures_with_complex_params_test.dart
+++ b/tests/language/closure/closures_with_complex_params_test.dart
@@ -47,12 +47,10 @@
var f2 = (Pair<int, Pair<int, int>> pr) => pr.snd.fst + 2;
// Closures with function type with nested parameterized types.
- var ap1 =
- (f(Pair<int, Pair<int, int>> pr1), Pair<int, Pair<int, int>> pr) =>
- f(pr) * 10;
- var ap2 =
- (f(Pair<int, Pair<int, int>> pr1), Pair<int, Pair<int, int>> pr) =>
- f(pr) * 100;
+ var ap1 = (f(Pair<int, Pair<int, int>> pr1), Pair<int, Pair<int, int>> pr) =>
+ f(pr) * 10;
+ var ap2 = (f(Pair<int, Pair<int, int>> pr1), Pair<int, Pair<int, int>> pr) =>
+ f(pr) * 100;
var e = new Pair<int, Pair<int, int>>(100, new Pair<int, int>(200, 300));
diff --git a/tests/language/closure/with_super_field_test.dart b/tests/language/closure/with_super_field_test.dart
index 603c0f6..9dfc91f 100644
--- a/tests/language/closure/with_super_field_test.dart
+++ b/tests/language/closure/with_super_field_test.dart
@@ -12,7 +12,8 @@
class B extends A {
int get a => 54;
returnSuper() => super.a;
- returnSuperInClosure() => () => super.a;
+ returnSuperInClosure() =>
+ () => super.a;
}
main() {
diff --git a/tests/language/compile_time_constant/compile_time_constant11_test.dart b/tests/language/compile_time_constant/compile_time_constant11_test.dart
index 7a4d1df..ddd8c86 100644
--- a/tests/language/compile_time_constant/compile_time_constant11_test.dart
+++ b/tests/language/compile_time_constant/compile_time_constant11_test.dart
@@ -9,21 +9,19 @@
const C1 = true;
const C2 = false;
-const nephew =
- C1
- ? C2
- ? "Tick"
- : "Trick"
- : "Track";
+const nephew = C1
+ ? C2
+ ? "Tick"
+ : "Trick"
+ : "Track";
main() {
const a = true ? 5 : 10;
- const b =
- C2
- ? "Track"
- : C1
- ? "Trick"
- : "Tick";
+ const b = C2
+ ? "Track"
+ : C1
+ ? "Trick"
+ : "Tick";
Expect.equals(5, a);
Expect.equals("Trick", nephew);
diff --git a/tests/language/const/instantiated_function_constant_test.dart b/tests/language/const/instantiated_function_constant_test.dart
index 0242fc5..abb1d78 100644
--- a/tests/language/const/instantiated_function_constant_test.dart
+++ b/tests/language/const/instantiated_function_constant_test.dart
@@ -59,12 +59,11 @@
x3 = b ? ((b ? prefix.f1 : f2))<U> : ((b ? prefix.f1 : f2))<int>,
x4 = b ? ((b ? c01 : prefix.c02))<U> : ((b ? c01 : prefix.c02))<int>,
x5 = b ? (null ?? f1)<U> : (null ?? f1)<int>,
- x6 =
- b
- ? ((c01 as dynamic)
- as void Function<X extends num>(X, [num, List<X>]))<U>
- : ((c01 as dynamic)
- as void Function<X extends num>(X, [num, List<X>]))<int>,
+ x6 = b
+ ? ((c01 as dynamic)
+ as void Function<X extends num>(X, [num, List<X>]))<U>
+ : ((c01 as dynamic)
+ as void Function<X extends num>(X, [num, List<X>]))<int>,
x7 = b ? f1 : f2,
x8 = b ? c01 : c02,
x9 = null ?? c02,
diff --git a/tests/language/constants_2018/type_check_test.dart b/tests/language/constants_2018/type_check_test.dart
index 169bf45..3c3ab4e 100644
--- a/tests/language/constants_2018/type_check_test.dart
+++ b/tests/language/constants_2018/type_check_test.dart
@@ -29,10 +29,9 @@
const T.length2(dynamic l, int defaultValue)
: value = l is! String ? defaultValue : l.length;
const T.sum(dynamic o1, dynamic o2)
- : value =
- ((o1 is num) & (o2 is num)) | ((o1 is String) & (o2 is String))
- ? o1 + o2
- : o1;
+ : value = ((o1 is num) & (o2 is num)) | ((o1 is String) & (o2 is String))
+ ? o1 + o2
+ : o1;
}
class C {
diff --git a/tests/language/constructor/constructor_contexts_test.dart b/tests/language/constructor/constructor_contexts_test.dart
index f5244b6..eee1348 100644
--- a/tests/language/constructor/constructor_contexts_test.dart
+++ b/tests/language/constructor/constructor_contexts_test.dart
@@ -409,7 +409,9 @@
Function f2;
int a;
- AllocatorContextNormalParamAndTypeParamCapturedInBodyAndTypeParamInInitializer(int a) : this.a = a,
+ AllocatorContextNormalParamAndTypeParamCapturedInBodyAndTypeParamInInitializer(
+ int a,
+ ) : this.a = a,
f1 = (() {
Expect.identical(T, int);
}),
@@ -439,7 +441,9 @@
Function f2;
int a;
- AllocatorContextNormalParamAndTypeParamCapturedInBodyAndNormalParamInInitializer(int a) : this.a = a,
+ AllocatorContextNormalParamAndTypeParamCapturedInBodyAndNormalParamInInitializer(
+ int a,
+ ) : this.a = a,
f1 = (() {
a++;
Expect.equals(++expectedValueOfA, a);
@@ -1005,9 +1009,10 @@
expectedValueOfA = 123;
AllocatorContextNormalParamCapturedInBodyAndNormalAndTypeParamInInitializer
- k = AllocatorContextNormalParamCapturedInBodyAndNormalAndTypeParamInInitializer<
- int
- >(expectedValueOfA);
+ k =
+ AllocatorContextNormalParamCapturedInBodyAndNormalAndTypeParamInInitializer<
+ int
+ >(expectedValueOfA);
k.runAssertions();
expectedValueOfA = 123;
@@ -1019,14 +1024,18 @@
expectedValueOfA = 123;
AllocatorContextNormalParamAndTypeParamCapturedInBodyAndTypeParamInInitializer
- m = AllocatorContextNormalParamAndTypeParamCapturedInBodyAndTypeParamInInitializer<
- int
- >(expectedValueOfA);
+ m =
+ AllocatorContextNormalParamAndTypeParamCapturedInBodyAndTypeParamInInitializer<
+ int
+ >(expectedValueOfA);
m.runAssertions();
expectedValueOfA = 123;
AllocatorContextNormalParamAndTypeParamCapturedInBodyAndNormalParamInInitializer
- n = AllocatorContextNormalParamAndTypeParamCapturedInBodyAndNormalParamInInitializer<int>(expectedValueOfA);
+ n =
+ AllocatorContextNormalParamAndTypeParamCapturedInBodyAndNormalParamInInitializer<
+ int
+ >(expectedValueOfA);
n.runAssertions();
expectedValueOfA = 123;
diff --git a/tests/language/covariant/subtyping_test.dart b/tests/language/covariant/subtyping_test.dart
index 7a8342b..f590c16 100644
--- a/tests/language/covariant/subtyping_test.dart
+++ b/tests/language/covariant/subtyping_test.dart
@@ -116,8 +116,8 @@
}
testFieldOfGenericFunctionType() {
- FnChecks<Object> c =
- new FnChecks<num>()..g = <S extends num>(S s) => s.isNegative;
+ FnChecks<Object> c = new FnChecks<num>()
+ ..g = <S extends num>(S s) => s.isNegative;
Expect.throwsTypeError(() {
G<Object> g = c.g;
diff --git a/tests/language/double_literals/implicit_double_context_test.dart b/tests/language/double_literals/implicit_double_context_test.dart
index aee4122..c997efa 100644
--- a/tests/language/double_literals/implicit_double_context_test.dart
+++ b/tests/language/double_literals/implicit_double_context_test.dart
@@ -431,13 +431,11 @@
Expect.identical(0.0, v1);
v2 = 1..toString();
Expect.identical(1.0, v2);
- v3 =
- -0
- ..toString();
+ v3 = -0
+ ..toString();
Expect.identical(-0.0, v3);
- v4 =
- -1
- ..toString();
+ v4 = -1
+ ..toString();
Expect.identical(-1.0, v4);
v5 = 9223372036854775808..toString();
Expect.identical(9223372036854775808.0, v5);
@@ -445,9 +443,8 @@
Expect.identical(18446744073709551616.0, v6);
v7 = 0x02..toString(); // Hex literal.
Expect.identical(2.0, v7);
- v8 =
- -0x02
- ..toString(); // Hex literal.
+ v8 = -0x02
+ ..toString(); // Hex literal.
Expect.identical(-2.0, v8);
// Nexted context, double assignment.
@@ -554,9 +551,8 @@
{
// Check that the correct value is used as receiver for the cascade.
var collector = StringBuffer();
- double tricky =
- -42
- ..toString().codeUnits.forEach(collector.writeCharCode);
+ double tricky = -42
+ ..toString().codeUnits.forEach(collector.writeCharCode);
Expect.equals("${-42.0}", collector.toString());
}
@@ -566,8 +562,11 @@
// The context type of "4.toString..." is not double, and the `-`
// is not having a literal as operand.
Expect.throws(() {
- double tricky =
- -4.toString().codeUnits.firstWhere((c) => !isDigit(c)).toDouble();
+ double tricky = -4
+ .toString()
+ .codeUnits
+ .firstWhere((c) => !isDigit(c))
+ .toDouble();
});
}
diff --git a/tests/language/export/ambiguous_main_test.dart b/tests/language/export/ambiguous_main_test.dart
index a52cd4f..4b135bc 100644
--- a/tests/language/export/ambiguous_main_test.dart
+++ b/tests/language/export/ambiguous_main_test.dart
@@ -4,7 +4,8 @@
export 'ambiguous_main_a.dart';
export 'ambiguous_main_b.dart';
-// [error column 1]
+
+// [error line 6, column 1]
// [cfe] 'main' is exported from both 'tests/language/export/ambiguous_main_a.dart' and 'tests/language/export/ambiguous_main_b.dart'.
-// ^^^^^^^^^^^^^^^^^^^^^^^
+// [error line 6, column 8]
// [analyzer] COMPILE_TIME_ERROR.AMBIGUOUS_EXPORT
diff --git a/tests/language/extension_methods/null_aware_promotion_test.dart b/tests/language/extension_methods/null_aware_promotion_test.dart
index 35dc25a..ff28b88 100644
--- a/tests/language/extension_methods/null_aware_promotion_test.dart
+++ b/tests/language/extension_methods/null_aware_promotion_test.dart
@@ -38,12 +38,13 @@
E(c)?.extensionProperty = c..expectStaticType<Exactly<C>>();
E(c)?.extensionProperty += c..expectStaticType<Exactly<C>>();
E(c)?.nullableExtensionProperty ??= c..expectStaticType<Exactly<C>>();
- E(c)?[c
- ..expectStaticType<Exactly<C>>()].method(c..expectStaticType<Exactly<C>>());
+ E(c)?[c..expectStaticType<Exactly<C>>()].method(
+ c..expectStaticType<Exactly<C>>(),
+ );
E(c)?[c..expectStaticType<Exactly<C>>()] = c..expectStaticType<Exactly<C>>();
E(c)?[c..expectStaticType<Exactly<C>>()] += c..expectStaticType<Exactly<C>>();
- E2(c)?[c..expectStaticType<Exactly<C>>()] ??=
- c..expectStaticType<Exactly<C>>();
+ E2(c)?[c..expectStaticType<Exactly<C>>()] ??= c
+ ..expectStaticType<Exactly<C>>();
}
testProperty(B b) {
@@ -55,12 +56,12 @@
E(b._c)?[b._c..expectStaticType<Exactly<C>>()].method(
b._c..expectStaticType<Exactly<C>>(),
);
- E(b._c)?[b._c..expectStaticType<Exactly<C>>()] =
- b._c..expectStaticType<Exactly<C>>();
- E(b._c)?[b._c..expectStaticType<Exactly<C>>()] +=
- b._c..expectStaticType<Exactly<C>>();
- E2(b._c)?[b._c..expectStaticType<Exactly<C>>()] ??=
- b._c..expectStaticType<Exactly<C>>();
+ E(b._c)?[b._c..expectStaticType<Exactly<C>>()] = b._c
+ ..expectStaticType<Exactly<C>>();
+ E(b._c)?[b._c..expectStaticType<Exactly<C>>()] += b._c
+ ..expectStaticType<Exactly<C>>();
+ E2(b._c)?[b._c..expectStaticType<Exactly<C>>()] ??= b._c
+ ..expectStaticType<Exactly<C>>();
}
main() {
diff --git a/tests/language/extension_methods/static_extension_resolution_7_test.dart b/tests/language/extension_methods/static_extension_resolution_7_test.dart
index 64bb976..13b8ae7 100644
--- a/tests/language/extension_methods/static_extension_resolution_7_test.dart
+++ b/tests/language/extension_methods/static_extension_resolution_7_test.dart
@@ -7,7 +7,8 @@
// Tests the resolution of a bare type variable with bounded or promoted type.
extension E<T> on T {
- T Function(T) get f => (_) => this;
+ T Function(T) get f =>
+ (_) => this;
}
class A<S extends num> {
diff --git a/tests/language/extension_type/extension_type_representation_type_test.dart b/tests/language/extension_type/extension_type_representation_type_test.dart
index c01a5fb..b399f14 100644
--- a/tests/language/extension_type/extension_type_representation_type_test.dart
+++ b/tests/language/extension_type/extension_type_representation_type_test.dart
@@ -112,7 +112,10 @@
V32(({int x = 0, String y = "0"}) {})._;
V33((int x, {required String y}) {})._;
V34(({required int x, String y = "0"}) {})._;
- V35(() => (Function f) => f)._;
+ V35(
+ () =>
+ (Function f) => f,
+ )._;
V36<Type>(int)._;
V37<Type>([int])._;
V38<Type>(int)._;
diff --git a/tests/language/extension_type/match_against_non_extension_types_in_inference_test.dart b/tests/language/extension_type/match_against_non_extension_types_in_inference_test.dart
index 9e46d51..6c6b3a2 100644
--- a/tests/language/extension_type/match_against_non_extension_types_in_inference_test.dart
+++ b/tests/language/extension_type/match_against_non_extension_types_in_inference_test.dart
@@ -46,10 +46,9 @@
// In type constraint generation, E<String> is compared against ET2<T>,
// yielding the constraint String <: T.
-test4() =>
- acceptingFunctionET2(
- producingFunctionE(),
- ).expectStaticType<Exactly<String>>();
+test4() => acceptingFunctionET2(
+ producingFunctionE(),
+).expectStaticType<Exactly<String>>();
extension type ET3<Y>(A<Y> it) implements ET1<Y> {}
@@ -81,10 +80,9 @@
// In type constraint generation, E<String> is compared against ET4<T>,
// yielding the constraint String <: T.
-test8() =>
- acceptingFunctionET4(
- producingFunctionE(),
- ).expectStaticType<Exactly<String>>();
+test8() => acceptingFunctionET4(
+ producingFunctionE(),
+).expectStaticType<Exactly<String>>();
main() {
test1();
diff --git a/tests/language/extension_type/why_not_promoted_implements_error_test.dart b/tests/language/extension_type/why_not_promoted_implements_error_test.dart
index 00a114e..9296186 100644
--- a/tests/language/extension_type/why_not_promoted_implements_error_test.dart
+++ b/tests/language/extension_type/why_not_promoted_implements_error_test.dart
@@ -71,15 +71,15 @@
}
class C4 implements C3 {
-// ^^
-// [context 6] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
-// [context 12] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
-// [context 18] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
-// [context 24] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
-// [context 30] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
-// [context 36] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
-// [context 42] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
-// [context 48] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
+ // ^^
+ // [context 6] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
+ // [context 12] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
+ // [context 18] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
+ // [context 24] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'. See http://dart.dev/go/non-promo-conflicting-noSuchMethod-forwarder
+ // [context 30] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
+ // [context 36] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
+ // [context 42] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
+ // [context 48] '_conflictingNsmForwarder' couldn't be promoted because there is a conflicting noSuchMethod forwarder in class 'C4'.
noSuchMethod(invocation) => 0;
}
diff --git a/tests/language/extension_type/why_not_promoted_representation_error_test.dart b/tests/language/extension_type/why_not_promoted_representation_error_test.dart
index a89c89f..2f09a73 100644
--- a/tests/language/extension_type/why_not_promoted_representation_error_test.dart
+++ b/tests/language/extension_type/why_not_promoted_representation_error_test.dart
@@ -7,15 +7,15 @@
// context message.
extension type E(int? i) {
-// ^
-// [context 1] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
-// [context 2] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
-// [context 3] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
-// [context 4] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
-// [context 5] 'i' refers to a public property so it couldn't be promoted.
-// [context 6] 'i' refers to a public property so it couldn't be promoted.
-// [context 7] 'i' refers to a public property so it couldn't be promoted.
-// [context 8] 'i' refers to a public property so it couldn't be promoted.
+ // ^
+ // [context 1] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
+ // [context 2] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
+ // [context 3] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
+ // [context 4] 'i' refers to a public property so it couldn't be promoted. See http://dart.dev/go/non-promo-public-field
+ // [context 5] 'i' refers to a public property so it couldn't be promoted.
+ // [context 6] 'i' refers to a public property so it couldn't be promoted.
+ // [context 7] 'i' refers to a public property so it couldn't be promoted.
+ // [context 8] 'i' refers to a public property so it couldn't be promoted.
void viaImplicitThis() {
if (i != null) {
i.isEven;
diff --git a/tests/language/regress_54994_test.dart b/tests/language/regress_54994_test.dart
index 49d89b8..4fb9152 100644
--- a/tests/language/regress_54994_test.dart
+++ b/tests/language/regress_54994_test.dart
@@ -27,18 +27,18 @@
}
void test2() {
- final B1<num, num> a =
- kTrue
- ? (B1<int, double>() as B1<num, num>)
- : (B2<double>() as B1<num, num>);
+ final B1<num, num> a = kTrue
+ ? (B1<int, double>() as B1<num, num>)
+ : (B2<double>() as B1<num, num>);
Expect.isFalse(a is B2<int>);
Expect.isFalse(a is B2<double>);
Expect.isFalse(a is B2<num>); // Should be optimized to cid-range check.
}
void test3() {
- final B1<int, num> a =
- kTrue ? (B1<int, double>() as B1<int, num>) : (B2<int>() as B1<int, num>);
+ final B1<int, num> a = kTrue
+ ? (B1<int, double>() as B1<int, num>)
+ : (B2<int>() as B1<int, num>);
Expect.isFalse(a is B2<int>);
Expect.isFalse(a is B2<double>);
Expect.isFalse(a is B2<num>);
@@ -66,8 +66,9 @@
}
void test7() {
- final B1<List<int>, List<int>> a =
- kTrue ? B2<List<int>>() : B1<List<int>, List<int>>();
+ final B1<List<int>, List<int>> a = kTrue
+ ? B2<List<int>>()
+ : B1<List<int>, List<int>>();
Expect.isTrue(a is B2<List<num>>); // Should be optimized to cid-range check.
Expect.isTrue(a is B2<List<int>>); // Should be optimized to cid-range check.
Expect.isFalse(a is B2<List<double>>);
@@ -82,8 +83,9 @@
}
void test2() {
- final B1<List<T>, List<T>> a =
- kTrue ? B2<List<T>>() : B1<List<T>, List<T>>();
+ final B1<List<T>, List<T>> a = kTrue
+ ? B2<List<T>>()
+ : B1<List<T>, List<T>>();
Expect.isTrue(a is B2<List<T>>); // Should be optimized to cid-range check.
Expect.isTrue(
a is B2<List<num>>,
diff --git a/tests/language/static_weak_reference_function_apply_test.dart b/tests/language/static_weak_reference_function_apply_test.dart
index 3a9e6fe..feaf4b8 100644
--- a/tests/language/static_weak_reference_function_apply_test.dart
+++ b/tests/language/static_weak_reference_function_apply_test.dart
@@ -14,9 +14,12 @@
@pragma('weak-tearoff-reference')
GG? weakRef(GG? x) => x;
-FF foo1() => ({int x = 100, int y = 10}) => 1000 + x + y;
-FF foo2() => ({int x = 200, int y = 20}) => 2000 + x + y;
-FF foo3() => ({int x = 300, int y = 30}) => 3000 + x + y;
+FF foo1() =>
+ ({int x = 100, int y = 10}) => 1000 + x + y;
+FF foo2() =>
+ ({int x = 200, int y = 20}) => 2000 + x + y;
+FF foo3() =>
+ ({int x = 300, int y = 30}) => 3000 + x + y;
main() {
print(foo1()());