| Index: tests/language/function_type/function_type37_test.dart
|
| diff --git a/tests/language/function_type/function_type37_test.dart b/tests/language/function_type/function_type37_test.dart
|
| index 986fc5802843d580cb36150735ef96686225e2e5..c0b31fec34c4ab7cc12d72e72d1765e41366ad69 100644
|
| --- a/tests/language/function_type/function_type37_test.dart
|
| +++ b/tests/language/function_type/function_type37_test.dart
|
| @@ -19,60 +19,34 @@ import 'package:expect/expect.dart';
|
| @AssumeDynamic()
|
| confuse(f) => f;
|
|
|
| -final bool inCheckedMode = (() {
|
| - bool result = false;
|
| - assert(result = true);
|
| - return result;
|
| -})();
|
| -
|
| -typedef F0<T>
|
| - = int Function(core.List<core.int> x0);
|
| -typedef F1<T>
|
| - = List<Function> Function(int y, [List<Function> x]);
|
| -typedef F2<T>
|
| - = List<T> Function(int x0, [Function x]);
|
| -typedef F3<T>
|
| - = void Function([int x]);
|
| -typedef F4<T>
|
| - = Function<A>();
|
| -typedef F5<T>
|
| - = int Function(int x, [Function x1]) Function(int x);
|
| -typedef F6<T>
|
| - = int Function(int y, {core.List<core.int> x}) Function(int x);
|
| -typedef F7<T>
|
| - = Function Function([Function x]) Function(int x);
|
| -typedef F8<T>
|
| - = Function Function(core.List<core.int> x1) Function(int x);
|
| -typedef F9<T>
|
| - = List<Function> Function(int x2, [int x3]) Function(int x);
|
| -typedef F10<T>
|
| - = List<Function> Function(int x1, {List<Function> x}) Function(int x);
|
| -typedef F11<T>
|
| - = core.List<core.int> Function(int x) Function(int x);
|
| -typedef F12<T>
|
| - = core.List<core.int> Function(int y, [List<Function> x]) Function(int x);
|
| -typedef F13<T>
|
| - = core.List<core.int> Function(int x2, [List<T> x3]) Function(int x);
|
| -typedef F14<T>
|
| - = List<T> Function({Function x}) Function(int x);
|
| -typedef F15<T>
|
| - = List<T> Function(List<T> x) Function(int x);
|
| -typedef F16<T>
|
| - = Function(int x1, [Function x]) Function(int x);
|
| -typedef F17<T>
|
| - = Function([core.List<core.int> x1]) Function(int x);
|
| -typedef F18<T>
|
| - = void Function(int x, [int x1]) Function(int x);
|
| -typedef F19<T>
|
| - = void Function(int y, {List<Function> x}) Function(int x);
|
| -typedef F20<T>
|
| - = int Function<A>(Function x) Function(int x);
|
| -typedef F21<T>
|
| - = core.List<core.int> Function<A>(List<Function> x) Function(int x);
|
| -typedef F22<T>
|
| - = A Function<A>(core.List<core.int> x) Function(int x);
|
| -typedef F23<T>
|
| - = void Function(B x) Function<B extends core.int>(int x);
|
| +typedef F0<T> = int Function(core.List<core.int> x0);
|
| +typedef F1<T> = List<Function> Function(int y, [List<Function> x]);
|
| +typedef F2<T> = List<T> Function(int x0, [Function x]);
|
| +typedef F3<T> = void Function([int x]);
|
| +typedef F4<T> = Function<A>();
|
| +typedef F5<T> = int Function(int x, [Function x1]) Function(int x);
|
| +typedef F6<T> = int Function(int y, {core.List<core.int> x}) Function(int x);
|
| +typedef F7<T> = Function Function([Function x]) Function(int x);
|
| +typedef F8<T> = Function Function(core.List<core.int> x1) Function(int x);
|
| +typedef F9<T> = List<Function> Function(int x2, [int x3]) Function(int x);
|
| +typedef F10<T> = List<Function> Function(int x1, {List<Function> x}) Function(
|
| + int x);
|
| +typedef F11<T> = core.List<core.int> Function(int x) Function(int x);
|
| +typedef F12<T> = core.List<core.int> Function(int y, [List<Function> x])
|
| + Function(int x);
|
| +typedef F13<T> = core.List<core.int> Function(int x2, [List<T> x3]) Function(
|
| + int x);
|
| +typedef F14<T> = List<T> Function({Function x}) Function(int x);
|
| +typedef F15<T> = List<T> Function(List<T> x) Function(int x);
|
| +typedef F16<T> = Function(int x1, [Function x]) Function(int x);
|
| +typedef F17<T> = Function([core.List<core.int> x1]) Function(int x);
|
| +typedef F18<T> = void Function(int x, [int x1]) Function(int x);
|
| +typedef F19<T> = void Function(int y, {List<Function> x}) Function(int x);
|
| +typedef F20<T> = int Function<A>(Function x) Function(int x);
|
| +typedef F21<T> = core.List<core.int> Function<A>(List<Function> x) Function(
|
| + int x);
|
| +typedef F22<T> = A Function<A>(core.List<core.int> x) Function(int x);
|
| +typedef F23<T> = void Function(B x) Function<B extends core.int>(int x);
|
|
|
| int f0(core.List<core.int> x0) => null;
|
| List<Function> f1(int y, [List<Function> x]) => null;
|
| @@ -262,7 +236,7 @@ class U37<T> {
|
| Expect.equals(tIsDynamic, m2 is F2<bool>);
|
| Expect.equals(tIsDynamic, confuse(m2) is F2<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x2 = (f2 as dynamic);
|
| });
|
| @@ -470,8 +444,8 @@ class U37<T> {
|
| }
|
|
|
| Expect.isTrue(m10 is F10);
|
| - Expect.isTrue(m10 is List<Function> Function(int x1,
|
| - {List<Function> x}) Function(int x));
|
| + Expect.isTrue(m10 is List<Function> Function(int x1, {List<Function> x})
|
| + Function(int x));
|
| Expect.isTrue(confuse(m10) is F10);
|
| // In checked mode, verifies the type.
|
| x10 = m10;
|
| @@ -519,8 +493,8 @@ class U37<T> {
|
| }
|
|
|
| Expect.isTrue(m12 is F12);
|
| - Expect.isTrue(m12 is core.List<core.int> Function(int y,
|
| - [List<Function> x]) Function(int x));
|
| + Expect.isTrue(m12 is core.List<core.int> Function(int y, [List<Function> x])
|
| + Function(int x));
|
| Expect.isTrue(confuse(m12) is F12);
|
| // In checked mode, verifies the type.
|
| x12 = m12;
|
| @@ -544,8 +518,8 @@ class U37<T> {
|
| }
|
|
|
| Expect.isTrue(m13 is F13);
|
| - Expect.isTrue(m13 is core.List<core.int> Function(int x2,
|
| - [List<T> x3]) Function(int x));
|
| + Expect.isTrue(m13 is core.List<core.int> Function(int x2, [List<T> x3])
|
| + Function(int x));
|
| Expect.isTrue(confuse(m13) is F13);
|
| // In checked mode, verifies the type.
|
| x13 = m13;
|
| @@ -560,7 +534,7 @@ class U37<T> {
|
| Expect.equals(tIsDynamic, m13 is F13<bool>);
|
| Expect.equals(tIsDynamic, confuse(m13) is F13<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x13 = (f13 as dynamic);
|
| });
|
| @@ -613,7 +587,7 @@ class U37<T> {
|
| Expect.equals(tIsDynamic, m14 is F14<bool>);
|
| Expect.equals(tIsDynamic, confuse(m14) is F14<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x14 = (f14 as dynamic);
|
| });
|
| @@ -665,7 +639,7 @@ class U37<T> {
|
| Expect.equals(tIsDynamic, m15 is F15<bool>);
|
| Expect.equals(tIsDynamic, confuse(m15) is F15<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x15 = (f15 as dynamic);
|
| });
|
| @@ -823,8 +797,8 @@ class U37<T> {
|
| }
|
|
|
| Expect.isTrue(m21 is F21);
|
| - Expect.isTrue(m21 is core.List<core.int> Function<A>(
|
| - List<Function> x) Function(int x));
|
| + Expect.isTrue(m21 is core.List<core.int> Function<A>(List<Function> x)
|
| + Function(int x));
|
| Expect.isTrue(confuse(m21) is F21);
|
| // In checked mode, verifies the type.
|
| x21 = m21;
|
|
|