Remove uses of : as default value separator in some tests/ directories.

Change-Id: I35bb926e53e92fd02e264fb5b14feadf063fb8db
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/257961
Reviewed-by: Michael Thomsen <mit@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
This commit is contained in:
Lasse R.H. Nielsen 2022-09-07 14:49:17 +00:00 committed by Commit Bot
parent 0f6c17cbba
commit 5642199dd0
216 changed files with 422 additions and 433 deletions

View file

@ -1,3 +0,0 @@
analyzer:
enable-experiment:
- non-nullable

View file

@ -20,10 +20,10 @@ main() {
var c1 = () => 'c1';
var c2 = (a) => 'c2 $a';
var c3 = ([a = 1]) => 'c3 $a';
var c4 = ({a: 1}) => 'c4 $a';
var c5 = ({a: 1, b: 2}) => 'c5 $a $b';
var c6 = ({b: 1, a: 2}) => 'c6 $a $b';
var c7 = (x, {b: 1, a: 2}) => 'c7 $x $a $b';
var c4 = ({a = 1}) => 'c4 $a';
var c5 = ({a = 1, b = 2}) => 'c5 $a $b';
var c6 = ({b = 1, a = 2}) => 'c6 $a $b';
var c7 = (x, {b = 1, a = 2}) => 'c7 $x $a $b';
var c8 = (x, y, [a = 2, b = 3]) => 'c8 $x $y $a $b';
Expect.equals('c1', apply(c1, null, null));

View file

@ -69,7 +69,7 @@ testIterable(Iterable iterable, List expected, [element, int depth = 0]) {
}
}
test(Iterable iterable, List expected, element, {bool growable: true}) {
test(Iterable iterable, List expected, element, {bool growable = true}) {
var list = iterable.toList(growable: growable);
Expect.listEquals(expected, list);
Expect.equals(expected is List<int>, list is List<int>, "int");

View file

@ -41,7 +41,7 @@ void testNum(Map<Object, Object> map, String name) {
}
void test<K, V>(map, firstKey, firstValue, String name,
{bool noSuchMethodMap: false}) {
{bool noSuchMethodMap = false}) {
if (!noSuchMethodMap) {
Expect.isTrue(map.containsKey(firstKey), "$name.containsKey");
Expect.equals(1, map.length, "$name.length");

View file

@ -37,7 +37,7 @@ void main() {
}
void execString(String pattern, String input, List<String?> expectedResult,
{bool unicode = true, bool caseSensitive: false}) {
{bool unicode = true, bool caseSensitive = false}) {
execRE(RegExp(pattern, unicode: unicode, caseSensitive: caseSensitive),
input, expectedResult);
}
@ -52,7 +52,7 @@ void main() {
void execStringGroups(
String pattern, String input, Map<String, String?> expectedResults,
{bool unicode = true, bool caseSensitive: false}) {
{bool unicode = true, bool caseSensitive = false}) {
namedRE(RegExp(pattern, unicode: unicode, caseSensitive: caseSensitive),
input, expectedResults);
}

View file

@ -264,7 +264,7 @@ testFileUriIllegalDriveLetter() {
}
testAdditionalComponents() {
check(String s, {bool windowsOk: false}) {
check(String s, {bool windowsOk = false}) {
Uri uri = Uri.parse(s);
Expect.throwsUnsupportedError(() => uri.toFilePath(windows: false));
if (windowsOk) {

View file

@ -1,3 +0,0 @@
analyzer:
enable-experiment:
- non-nullable

View file

@ -18,7 +18,7 @@ String check({bool? a, bool? b}) {
class Class {
final String field;
Class({bool? a: false, bool? b: true}) : this.field = check(a: a, b: b);
Class({bool? a = false, bool? b = true}) : this.field = check(a: a, b: b);
}
main() {

View file

@ -18,7 +18,7 @@ String check({bool? a, bool? b}) {
class Class {
final String field;
Class({bool? a: false, bool? b: true}) : this.field = check(a: a, b: b);
Class({bool? a = false, bool? b = true}) : this.field = check(a: a, b: b);
}
main() {

View file

@ -26,7 +26,7 @@ main() {
Expect.isTrue(opt_arg.call("b"));
}
named_arg({x: 11, y: 22}) => "$x$y";
named_arg({x = 11, y = 22}) => "$x$y";
for (var i = 0; i < 20; i++) {
Expect.equals("1122", named_arg());

View file

@ -34,7 +34,7 @@ main() {
Expect.isTrue(opt_arg_tearOff.call("b"));
}
named_arg({x: 11, y: 22}) => "$x$y";
named_arg({x = 11, y = 22}) => "$x$y";
var named_arg_tearOff = named_arg.call;
for (var i = 0; i < 20; i++) {

View file

@ -5,7 +5,7 @@
import "package:expect/expect.dart";
class A {
call({a: 42}) {
call({a = 42}) {
return 499 + a;
}
}

View file

@ -30,7 +30,7 @@ class D {
// Non-trivial method body combination of positional and named.
class E {
String call(String str, {int count: 1}) {
String call(String str, {int count = 1}) {
StringBuffer buffer = new StringBuffer();
for (var i = 0; i < count; i++) {
buffer.write(str);

View file

@ -7,7 +7,7 @@ import "package:expect/expect.dart";
// This methods needs a stub method (because it is used in Function.apply, where
// we can't see all possible uses).
// The stub-method(s) must not clash with other global names (like classes).
foo({a: 499}) => a;
foo({a = 499}) => a;
bar(f) {
return f();

View file

@ -9,12 +9,12 @@ import "package:expect/expect.dart";
class A {
foo() => 499;
fooo() => 4999; // Implicit closure class can be shared with foo.
bar(x, {y: 8, z: 10}) => "1 $x $y $z";
gee(x, {y: 9, z: 11}) => "2 $x $y $z"; // Must not be shared with "bar".
toto(x, {y: 8, z: 10}) => "3 $x $y $z"; // Could be shared with "bar".
bar(x, {y = 8, z = 10}) => "1 $x $y $z";
gee(x, {y = 9, z = 11}) => "2 $x $y $z"; // Must not be shared with "bar".
toto(x, {y = 8, z = 10}) => "3 $x $y $z"; // Could be shared with "bar".
fisk(x, {y: 8, zz: 10}) => "4 $x $y $zz";
titi(x, {y: 8, zz: 77}) => "5 $x $y $zz"; // Could be shared with "fisk",
fisk(x, {y = 8, zz = 10}) => "4 $x $y $zz";
titi(x, {y = 8, zz = 77}) => "5 $x $y $zz"; // Could be shared with "fisk",
// because default-val is never used.
}
@ -23,11 +23,11 @@ class B {
// of A.
foo() => 4990;
fooo() => 49990;
bar(x, {y: 8, z: 10}) => "1B $x $y $z";
gee(x, {y: 9, z: 11}) => "2B $x $y $z";
toto(x, {y: 8, z: 10}) => "3B $x $y $z";
fisk(x, {y: 8, zz: 10}) => "4B $x $y $zz";
titi(x, {y: 8, zz: 77}) => "5B $x $y $zz";
bar(x, {y = 8, z = 10}) => "1B $x $y $z";
gee(x, {y = 9, z = 11}) => "2B $x $y $z";
toto(x, {y = 8, z = 10}) => "3B $x $y $z";
fisk(x, {y = 8, zz = 10}) => "4B $x $y $zz";
titi(x, {y = 8, zz = 77}) => "5B $x $y $zz";
}
tearOffFoo(o) => o.foo;

View file

@ -15,12 +15,12 @@ void defaultF<T>(T v) {
class X1 {
final F1 f;
const X1({this.f: defaultF});
const X1({this.f = defaultF});
}
class X2 {
final F2 f;
const X2({this.f: defaultF});
const X2({this.f = defaultF});
}
class Y1 {

View file

@ -7,7 +7,7 @@
class A {
const A(a);
const A.named({a: 42});
const A.named({a = 42});
const A.optional([a]);
}

View file

@ -4,7 +4,7 @@
class A {
const A(a);
const A.named({a: 42});
const A.named({a = 42});
const A.optional([a]);
}

View file

@ -14,7 +14,7 @@ class A {
: y = 499,
t = tt,
x = 3;
const A.n({this.z: 99, tt: 100})
const A.n({this.z = 99, tt = 100})
: y = 499,
t = tt,
x = 3;

View file

@ -7,7 +7,7 @@ import 'package:expect/expect.dart';
class K implements L {
final field1;
final field2;
const K({this.field1: 42, this.field2: true});
const K({this.field1 = 42, this.field2 = true});
}
class L {

View file

@ -4,7 +4,7 @@
class A {
final List<A> children;
const A({this.children: const []});
const A({this.children = const []});
}
const a = const A();

View file

@ -16,7 +16,7 @@ int E(int i) {
}
class A {
A({arg1: 100, arg2: 200})
A({arg1 = 100, arg2 = 200})
: a1 = E(arg1++),
a2 = E(arg2++) {
// b2 should be initialized between the above initializers and the following

View file

@ -13,7 +13,7 @@ main() {
class A {
final bool condition;
A({this.condition: true});
A({this.condition = true});
factory A.a1({condition}) = _A1.boo;
@ -25,5 +25,5 @@ class A {
}
class _A1 extends A {
_A1.boo({condition: true}) : super(condition: condition);
_A1.boo({condition = true}) : super(condition: condition);
}

View file

@ -10,7 +10,7 @@ class A {
final x;
@pragma('dart2js:noInline')
A({this.x: "foo"}) {
A({this.x = "foo"}) {
Expect.equals("foo", x.toString());
}
}

View file

@ -20,7 +20,7 @@ bar() {
class X {
var i;
var j;
X({a: 'defa', b: 'defb'})
X({a = 'defa', b = 'defb'})
: this.i = a,
this.j = b;
X.foo() : this(b: 1, a: 2);

View file

@ -6,7 +6,7 @@ typedef void funcType([int arg]);
typedef void badFuncType([int arg = 0]); //# 00: compile-time error
typedef void badFuncType({int arg: 0}); //# 02: compile-time error
typedef void badFuncType({int arg = 0}); //# 02: compile-time error
class A
extends funcType // //# 01: compile-time error

View file

@ -12,8 +12,8 @@ class C {
var field;
C.c1(int this.field()?);
C.c2({int this.field()?});
C.c3({int field()?: null});
C.c4({int this.field()?: null});
C.c3({int field()? = null});
C.c4({int this.field()? = null});
C.c5([int this.field()?]);
C.c6([int field()? = null]);
C.c7([int this.field()? = null]);

View file

@ -103,7 +103,7 @@ class U0<T> {
late Function<A>(List<Function> x) Function() x22;
late void Function<A>(core.List<core.int> x) Function() x23;
U0({this.tIsBool: false, this.tIsInt: false})
U0({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x) => throw 'uncalled';

View file

@ -127,7 +127,7 @@ class U10<T> {
late Function<A>(List<T> x) Function<B extends core.int>() x22;
late void Function<A>() Function<B extends core.int>() x23;
U10({this.tIsBool: false, this.tIsInt: false})
U10({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, {int x = -1}) => throw 'uncalled';

View file

@ -139,7 +139,7 @@ class U11<T> {
late Function<A>(List<T> x) Function<B extends core.int>(int x) x22;
late void Function<A>() Function<B extends core.int>(int x) x23;
U11({this.tIsBool: false, this.tIsInt: false})
U11({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(Function x) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U12<T> {
late Function<A>() Function() x22;
late void Function<A>(A x) Function() x23;
U12({this.tIsBool: false, this.tIsInt: false})
U12({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([Function x = _voidFunction]) => throw 'uncalled';

View file

@ -103,7 +103,7 @@ class U13<T> {
late Function<A>() Function(int x) x22;
late void Function<A>(A x) Function(int x) x23;
U13({this.tIsBool: false, this.tIsInt: false})
U13({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [Function x = _voidFunction]) => throw 'uncalled';

View file

@ -126,7 +126,7 @@ class U14<T> {
late Function<A>() Function<B extends core.int>() x22;
late void Function<A>(A x) Function<B extends core.int>() x23;
U14({this.tIsBool: false, this.tIsInt: false})
U14({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, [Function x = _voidFunction]) => throw 'uncalled';

View file

@ -138,7 +138,7 @@ class U15<T> {
late Function<A>() Function<B extends core.int>(int x) x22;
late void Function<A>(A x) Function<B extends core.int>(int x) x23;
U15({this.tIsBool: false, this.tIsInt: false})
U15({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(Function x0) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U16<T> {
late Function<A>(A x) Function() x22;
late void Function<A>(List<A> x) Function() x23;
U16({this.tIsBool: false, this.tIsInt: false})
U16({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([Function x0 = _voidFunction]) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U17<T> {
late Function<A>(A x) Function(int x) x22;
late void Function<A>(List<A> x) Function(int x) x23;
U17({this.tIsBool: false, this.tIsInt: false})
U17({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [Function x1 = _voidFunction]) => throw 'uncalled';

View file

@ -123,7 +123,7 @@ class U18<T> {
late Function<A>(A x) Function<B extends core.int>() x22;
late void Function<A>(List<A> x) Function<B extends core.int>() x23;
U18({this.tIsBool: false, this.tIsInt: false})
U18({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x, [Function x0 = _voidFunction]) => throw 'uncalled';

View file

@ -139,7 +139,7 @@ class U19<T> {
late Function<A>(A x) Function<B extends core.int>(int x) x22;
late void Function<A>(List<A> x) Function<B extends core.int>(int x) x23;
U19({this.tIsBool: false, this.tIsInt: false})
U19({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0({Function x = _voidFunction}) => throw 'uncalled';

View file

@ -104,7 +104,7 @@ class U1<T> {
late Function<A>(List<Function> x) Function(int x) x22;
late void Function<A>(core.List<core.int> x) Function(int x) x23;
U1({this.tIsBool: false, this.tIsInt: false})
U1({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([int x = -1]) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U20<T> {
late Function<A>(List<A> x) Function() x22;
late int Function(B x) Function<B extends core.int>() x23;
U20({this.tIsBool: false, this.tIsInt: false})
U20({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, {Function x = _voidFunction}) => throw 'uncalled';

View file

@ -103,7 +103,7 @@ class U21<T> {
late Function<A>(List<A> x) Function(int x) x22;
late int Function(B x) Function<B extends core.int>(int x) x23;
U21({this.tIsBool: false, this.tIsInt: false})
U21({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, {Function x = _voidFunction}) => throw 'uncalled';

View file

@ -127,7 +127,7 @@ class U22<T> {
late Function<A>(List<A> x) Function<B extends core.int>() x22;
late Function Function(B x) Function<B extends core.int>() x23;
U22({this.tIsBool: false, this.tIsInt: false})
U22({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(List<Function> x) => throw 'uncalled';

View file

@ -142,7 +142,7 @@ class U23<T> {
late Function<A>(List<A> x) Function<B extends core.int>(int x) x22;
late Function Function(B x) Function<B extends core.int>(int x) x23;
U23({this.tIsBool: false, this.tIsInt: false})
U23({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([List<Function> x = const []]) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U24<T> {
late A Function<A>(int x) Function() x22;
late List<Function> Function(B x) Function<B extends core.int>() x23;
U24({this.tIsBool: false, this.tIsInt: false})
U24({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [List<Function> x = const []]) => throw 'uncalled';

View file

@ -104,7 +104,7 @@ class U25<T> {
late A Function<A>(int x) Function(int x) x22;
late List<Function> Function(B x) Function<B extends core.int>(int x) x23;
U25({this.tIsBool: false, this.tIsInt: false})
U25({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, [List<Function> x = const []]) => throw 'uncalled';

View file

@ -136,7 +136,7 @@ class U26<T> {
late A Function<A>(int x) Function<B extends core.int>() x22;
late core.List<core.int> Function(B x) Function<B extends core.int>() x23;
U26({this.tIsBool: false, this.tIsInt: false})
U26({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(List<Function> x0) => throw 'uncalled';

View file

@ -145,7 +145,7 @@ class U27<T> {
late core.List<core.int> Function(B x) Function<B extends core.int>(int x)
x23;
U27({this.tIsBool: false, this.tIsInt: false})
U27({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([List<Function> x0 = const []]) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U28<T> {
late A Function<A>(Function x) Function() x22;
late List<T> Function(B x) Function<B extends core.int>() x23;
U28({this.tIsBool: false, this.tIsInt: false})
U28({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [List<Function> x1 = const []]) => throw 'uncalled';

View file

@ -103,7 +103,7 @@ class U29<T> {
late A Function<A>(Function x) Function(int x) x22;
late List<T> Function(B x) Function<B extends core.int>(int x) x23;
U29({this.tIsBool: false, this.tIsInt: false})
U29({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x, [List<Function> x0 = const []]) => throw 'uncalled';

View file

@ -134,7 +134,7 @@ class U2<T> {
late void Function<A>(core.List<core.int> x) Function<B extends core.int>()
x23;
U2({this.tIsBool: false, this.tIsInt: false})
U2({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [int x = -1]) => throw 'uncalled';

View file

@ -130,7 +130,7 @@ class U30<T> {
late A Function<A>(Function x) Function<B extends core.int>() x22;
late Function(B x) Function<B extends core.int>() x23;
U30({this.tIsBool: false, this.tIsInt: false})
U30({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0({List<Function> x = const []}) => throw 'uncalled';

View file

@ -140,7 +140,7 @@ class U31<T> {
late A Function<A>(Function x) Function<B extends core.int>(int x) x22;
late Function(B x) Function<B extends core.int>(int x) x23;
U31({this.tIsBool: false, this.tIsInt: false})
U31({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, {List<Function> x = const []}) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U32<T> {
late A Function<A>(List<Function> x) Function() x22;
late B Function(B x) Function<B extends core.int>() x23;
U32({this.tIsBool: false, this.tIsInt: false})
U32({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, {List<Function> x = const []}) => throw 'uncalled';

View file

@ -107,7 +107,7 @@ class U33<T> {
late A Function<A>(List<Function> x) Function(int x) x22;
late B Function(B x) Function<B extends core.int>(int x) x23;
U33({this.tIsBool: false, this.tIsInt: false})
U33({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(core.List<core.int> x) => throw 'uncalled';

View file

@ -127,7 +127,7 @@ class U34<T> {
late A Function<A>(List<Function> x) Function<B extends core.int>() x22;
late List<B> Function(B x) Function<B extends core.int>() x23;
U34({this.tIsBool: false, this.tIsInt: false})
U34({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([core.List<core.int> x = const []]) => throw 'uncalled';

View file

@ -139,7 +139,7 @@ class U35<T> {
late A Function<A>(List<Function> x) Function<B extends core.int>(int x) x22;
late List<B> Function(B x) Function<B extends core.int>(int x) x23;
U35({this.tIsBool: false, this.tIsInt: false})
U35({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [core.List<core.int> x = const []]) => throw 'uncalled';

View file

@ -103,7 +103,7 @@ class U36<T> {
late A Function<A>(core.List<core.int> x) Function() x22;
late void Function(B x) Function<B extends core.int>() x23;
U36({this.tIsBool: false, this.tIsInt: false})
U36({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, [core.List<core.int> x = const []]) => throw 'uncalled';

View file

@ -107,7 +107,7 @@ class U37<T> {
late A Function<A>(core.List<core.int> x) Function(int x) x22;
late void Function(B x) Function<B extends core.int>(int x) x23;
U37({this.tIsBool: false, this.tIsInt: false})
U37({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(core.List<core.int> x0) => throw 'uncalled';

View file

@ -127,7 +127,7 @@ class U38<T> {
late A Function<A>(core.List<core.int> x) Function<B extends core.int>() x22;
late B Function(int x) Function<B extends core.int>() x23;
U38({this.tIsBool: false, this.tIsInt: false})
U38({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([core.List<core.int> x0 = const []]) => throw 'uncalled';

View file

@ -147,7 +147,7 @@ class U39<T> {
x22;
late B Function(int x) Function<B extends core.int>(int x) x23;
U39({this.tIsBool: false, this.tIsInt: false})
U39({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [core.List<core.int> x1 = const []]) => throw 'uncalled';

View file

@ -148,7 +148,7 @@ class U3<T> {
late void Function<A>(core.List<core.int> x) Function<B extends core.int>(
int x) x23;
U3({this.tIsBool: false, this.tIsInt: false})
U3({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, [int x = -1]) => throw 'uncalled';

View file

@ -103,7 +103,7 @@ class U40<T> {
late A Function<A>(List<T> x) Function() x22;
late B Function(Function x) Function<B extends core.int>() x23;
U40({this.tIsBool: false, this.tIsInt: false})
U40({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x, [core.List<core.int> x0 = const []]) => throw 'uncalled';

View file

@ -106,7 +106,7 @@ class U41<T> {
late A Function<A>(List<T> x) Function(int x) x22;
late B Function(Function x) Function<B extends core.int>(int x) x23;
U41({this.tIsBool: false, this.tIsInt: false})
U41({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0({core.List<core.int> x = const []}) => throw 'uncalled';

View file

@ -129,7 +129,7 @@ class U42<T> {
late A Function<A>(List<T> x) Function<B extends core.int>() x22;
late B Function(List<Function> x) Function<B extends core.int>() x23;
U42({this.tIsBool: false, this.tIsInt: false})
U42({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, {core.List<core.int> x = const []}) => throw 'uncalled';

View file

@ -145,7 +145,7 @@ class U43<T> {
late A Function<A>(List<T> x) Function<B extends core.int>(int x) x22;
late B Function(List<Function> x) Function<B extends core.int>(int x) x23;
U43({this.tIsBool: false, this.tIsInt: false})
U43({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, {core.List<core.int> x = const []}) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U44<T> {
late A Function<A>() Function() x22;
late B Function(core.List<core.int> x) Function<B extends core.int>() x23;
U44({this.tIsBool: false, this.tIsInt: false})
U44({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(List<T> x) => throw 'uncalled';

View file

@ -104,7 +104,7 @@ class U45<T> {
late B Function(core.List<core.int> x) Function<B extends core.int>(int x)
x23;
U45({this.tIsBool: false, this.tIsInt: false})
U45({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([List<T> x = const []]) => throw 'uncalled';

View file

@ -134,7 +134,7 @@ class U46<T> {
late A Function<A>() Function<B extends core.int>() x22;
late B Function(List<T> x) Function<B extends core.int>() x23;
U46({this.tIsBool: false, this.tIsInt: false})
U46({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [List<T> x = const []]) => throw 'uncalled';

View file

@ -143,7 +143,7 @@ class U47<T> {
late A Function<A>() Function<B extends core.int>(int x) x22;
late B Function(List<T> x) Function<B extends core.int>(int x) x23;
U47({this.tIsBool: false, this.tIsInt: false})
U47({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, [List<T> x = const []]) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U48<T> {
late A Function<A>(A x) Function() x22;
late B Function() Function<B extends core.int>() x23;
U48({this.tIsBool: false, this.tIsInt: false})
U48({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(List<T> x0) => throw 'uncalled';

View file

@ -104,7 +104,7 @@ class U49<T> {
late A Function<A>(A x) Function(int x) x22;
late B Function() Function<B extends core.int>(int x) x23;
U49({this.tIsBool: false, this.tIsInt: false})
U49({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([List<T> x0 = const []]) => throw 'uncalled';

View file

@ -105,7 +105,7 @@ class U4<T> {
late Function<A>(core.List<core.int> x) Function() x22;
late void Function<A>(List<T> x) Function() x23;
U4({this.tIsBool: false, this.tIsInt: false})
U4({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0) => throw 'uncalled';

View file

@ -125,7 +125,7 @@ class U50<T> {
late core.List<core.int> Function<A>() Function<B extends core.int>() x21;
late A Function<A>(A x) Function<B extends core.int>() x22;
U50({this.tIsBool: false, this.tIsInt: false})
U50({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [List<T> x1 = const []]) => throw 'uncalled';

View file

@ -141,7 +141,7 @@ class U51<T> {
x21;
late A Function<A>(A x) Function<B extends core.int>(int x) x22;
U51({this.tIsBool: false, this.tIsInt: false})
U51({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x, [List<T> x0 = const []]) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U52<T> {
late core.List<core.int> Function<A>(A x) Function() x21;
late A Function<A>(List<A> x) Function() x22;
U52({this.tIsBool: false, this.tIsInt: false})
U52({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0({List<T> x = const []}) => throw 'uncalled';

View file

@ -106,7 +106,7 @@ class U53<T> {
late core.List<core.int> Function<A>(A x) Function(int x) x21;
late A Function<A>(List<A> x) Function(int x) x22;
U53({this.tIsBool: false, this.tIsInt: false})
U53({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, {List<T> x = const []}) => throw 'uncalled';

View file

@ -125,7 +125,7 @@ class U54<T> {
late core.List<core.int> Function<A>(A x) Function<B extends core.int>() x21;
late A Function<A>(List<A> x) Function<B extends core.int>() x22;
U54({this.tIsBool: false, this.tIsInt: false})
U54({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int y, {List<T> x = const []}) => throw 'uncalled';

View file

@ -138,7 +138,7 @@ class U55<T> {
x21;
late A Function<A>(List<A> x) Function<B extends core.int>(int x) x22;
U55({this.tIsBool: false, this.tIsInt: false})
U55({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0() => throw 'uncalled';

View file

@ -100,7 +100,7 @@ class U56<T> {
late core.List<core.int> Function<A>(List<A> x) Function() x21;
late List<A> Function<A>(int x) Function() x22;
U56({this.tIsBool: false, this.tIsInt: false})
U56({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U57<T> {
late core.List<core.int> Function<A>(List<A> x) Function(int x) x21;
late List<A> Function<A>(int x) Function(int x) x22;
U57({this.tIsBool: false, this.tIsInt: false})
U57({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0([int x = -1]) => throw 'uncalled';

View file

@ -123,7 +123,7 @@ class U58<T> {
x21;
late List<A> Function<A>(int x) Function<B extends core.int>() x22;
U58({this.tIsBool: false, this.tIsInt: false})
U58({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x0, [int x = -1]) => throw 'uncalled';

View file

@ -138,7 +138,7 @@ class U59<T> {
int x) x21;
late List<A> Function<A>(int x) Function<B extends core.int>(int x) x22;
U59({this.tIsBool: false, this.tIsInt: false})
U59({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int y, [int x = -1]) => throw 'uncalled';

View file

@ -106,7 +106,7 @@ class U5<T> {
late Function<A>(core.List<core.int> x) Function(int x) x22;
late void Function<A>(List<T> x) Function(int x) x23;
U5({this.tIsBool: false, this.tIsInt: false})
U5({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0([int x0 = -1]) => throw 'uncalled';

View file

@ -99,7 +99,7 @@ class U60<T> {
late List<T> Function<A>(int x) Function() x21;
late List<A> Function<A>(Function x) Function() x22;
U60({this.tIsBool: false, this.tIsInt: false})
U60({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x0) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U61<T> {
late List<T> Function<A>(int x) Function(int x) x21;
late List<A> Function<A>(Function x) Function(int x) x22;
U61({this.tIsBool: false, this.tIsInt: false})
U61({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0([int x0 = -1]) => throw 'uncalled';

View file

@ -124,7 +124,7 @@ class U62<T> {
late List<T> Function<A>(int x) Function<B extends core.int>() x21;
late List<A> Function<A>(Function x) Function<B extends core.int>() x22;
U62({this.tIsBool: false, this.tIsInt: false})
U62({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x0, [int x1 = -1]) => throw 'uncalled';

View file

@ -133,7 +133,7 @@ class U63<T> {
late List<T> Function<A>(int x) Function<B extends core.int>(int x) x21;
late List<A> Function<A>(Function x) Function<B extends core.int>(int x) x22;
U63({this.tIsBool: false, this.tIsInt: false})
U63({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x, [int x0 = -1]) => throw 'uncalled';

View file

@ -100,7 +100,7 @@ class U64<T> {
late List<T> Function<A>(Function x) Function() x21;
late List<A> Function<A>(List<Function> x) Function() x22;
U64({this.tIsBool: false, this.tIsInt: false})
U64({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0({int x = -1}) => throw 'uncalled';

View file

@ -101,7 +101,7 @@ class U65<T> {
late List<T> Function<A>(Function x) Function(int x) x21;
late List<A> Function<A>(List<Function> x) Function(int x) x22;
U65({this.tIsBool: false, this.tIsInt: false})
U65({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x0, {int x = -1}) => throw 'uncalled';

View file

@ -124,7 +124,7 @@ class U66<T> {
late List<T> Function<A>(Function x) Function<B extends core.int>() x21;
late List<A> Function<A>(List<Function> x) Function<B extends core.int>() x22;
U66({this.tIsBool: false, this.tIsInt: false})
U66({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int y, {int x = -1}) => throw 'uncalled';

View file

@ -138,7 +138,7 @@ class U67<T> {
late List<A> Function<A>(List<Function> x) Function<B extends core.int>(int x)
x22;
U67({this.tIsBool: false, this.tIsInt: false})
U67({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(Function x) => throw 'uncalled';

View file

@ -98,7 +98,7 @@ class U68<T> {
late List<T> Function<A>(List<Function> x) Function() x21;
late List<A> Function<A>(core.List<core.int> x) Function() x22;
U68({this.tIsBool: false, this.tIsInt: false})
U68({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0([Function x = _voidFunction]) => throw 'uncalled';

View file

@ -102,7 +102,7 @@ class U69<T> {
late List<T> Function<A>(List<Function> x) Function(int x) x21;
late List<A> Function<A>(core.List<core.int> x) Function(int x) x22;
U69({this.tIsBool: false, this.tIsInt: false})
U69({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x0, [Function x = _voidFunction]) => throw 'uncalled';

View file

@ -131,7 +131,7 @@ class U6<T> {
late Function<A>(core.List<core.int> x) Function<B extends core.int>() x22;
late void Function<A>(List<T> x) Function<B extends core.int>() x23;
U6({this.tIsBool: false, this.tIsInt: false})
U6({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
int m0(int x0, [int x1 = -1]) => throw 'uncalled';

View file

@ -122,7 +122,7 @@ class U70<T> {
late List<A> Function<A>(core.List<core.int> x) Function<B extends core.int>()
x22;
U70({this.tIsBool: false, this.tIsInt: false})
U70({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int y, [Function x = _voidFunction]) => throw 'uncalled';

View file

@ -140,7 +140,7 @@ class U71<T> {
late List<A> Function<A>(core.List<core.int> x) Function<B extends core.int>(
int x) x22;
U71({this.tIsBool: false, this.tIsInt: false})
U71({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(Function x0) => throw 'uncalled';

View file

@ -100,7 +100,7 @@ class U72<T> {
late List<T> Function<A>(core.List<core.int> x) Function() x21;
late List<A> Function<A>(List<T> x) Function() x22;
U72({this.tIsBool: false, this.tIsInt: false})
U72({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0([Function x0 = _voidFunction]) => throw 'uncalled';

View file

@ -104,7 +104,7 @@ class U73<T> {
late List<T> Function<A>(core.List<core.int> x) Function(int x) x21;
late List<A> Function<A>(List<T> x) Function(int x) x22;
U73({this.tIsBool: false, this.tIsInt: false})
U73({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x0, [Function x1 = _voidFunction]) => throw 'uncalled';

View file

@ -128,7 +128,7 @@ class U74<T> {
x21;
late List<A> Function<A>(List<T> x) Function<B extends core.int>() x22;
U74({this.tIsBool: false, this.tIsInt: false})
U74({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0(int x, [Function x0 = _voidFunction]) => throw 'uncalled';

View file

@ -140,7 +140,7 @@ class U75<T> {
int x) x21;
late List<A> Function<A>(List<T> x) Function<B extends core.int>(int x) x22;
U75({this.tIsBool: false, this.tIsInt: false})
U75({this.tIsBool = false, this.tIsInt = false})
: tIsDynamic = !tIsBool && !tIsInt;
Function m0({Function x = _voidFunction}) => throw 'uncalled';

Some files were not shown because too many files have changed in this diff Show more