| Index: tests/language/function_type/function_type36_test.dart
|
| diff --git a/tests/language/function_type/function_type36_test.dart b/tests/language/function_type/function_type36_test.dart
|
| index ab553b19d31c0ef823e1ac044c8fc9f5e882530e..7e14eccf7c24aadb8bfc8bd150221f6514e750aa 100644
|
| --- a/tests/language/function_type/function_type36_test.dart
|
| +++ b/tests/language/function_type/function_type36_test.dart
|
| @@ -19,60 +19,31 @@ 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(int y, [core.List<core.int> x]);
|
| -typedef F1<T>
|
| - = List<Function> Function(int x0, [List<Function> x]);
|
| -typedef F2<T>
|
| - = List<T> Function([Function x]);
|
| -typedef F3<T>
|
| - = void Function(int x);
|
| -typedef F4<T>
|
| - = Function<A>(List<T> x);
|
| -typedef F5<T>
|
| - = int Function(int x, [Function x2]) Function();
|
| -typedef F6<T>
|
| - = int Function(int y, {core.List<core.int> x}) Function();
|
| -typedef F7<T>
|
| - = Function Function([Function x]) Function();
|
| -typedef F8<T>
|
| - = Function Function(core.List<core.int> x0) Function();
|
| -typedef F9<T>
|
| - = List<Function> Function(int x1, [int x2]) Function();
|
| -typedef F10<T>
|
| - = List<Function> Function(int x0, {List<Function> x}) Function();
|
| -typedef F11<T>
|
| - = core.List<core.int> Function(int x) Function();
|
| -typedef F12<T>
|
| - = core.List<core.int> Function(int y, [List<Function> x]) Function();
|
| -typedef F13<T>
|
| - = core.List<core.int> Function(int x1, [List<T> x2]) Function();
|
| -typedef F14<T>
|
| - = List<T> Function({Function x}) Function();
|
| -typedef F15<T>
|
| - = List<T> Function(List<T> x) Function();
|
| -typedef F16<T>
|
| - = Function(int x0, [Function x]) Function();
|
| -typedef F17<T>
|
| - = Function([core.List<core.int> x1]) Function();
|
| -typedef F18<T>
|
| - = void Function(int x, [int x2]) Function();
|
| -typedef F19<T>
|
| - = void Function(int y, {List<Function> x}) Function();
|
| -typedef F20<T>
|
| - = int Function<A>(Function x) Function();
|
| -typedef F21<T>
|
| - = core.List<core.int> Function<A>(List<Function> x) Function();
|
| -typedef F22<T>
|
| - = A Function<A>(core.List<core.int> x) Function();
|
| -typedef F23<T>
|
| - = void Function(B x) Function<B extends core.int>();
|
| +typedef F0<T> = int Function(int y, [core.List<core.int> x]);
|
| +typedef F1<T> = List<Function> Function(int x0, [List<Function> x]);
|
| +typedef F2<T> = List<T> Function([Function x]);
|
| +typedef F3<T> = void Function(int x);
|
| +typedef F4<T> = Function<A>(List<T> x);
|
| +typedef F5<T> = int Function(int x, [Function x2]) Function();
|
| +typedef F6<T> = int Function(int y, {core.List<core.int> x}) Function();
|
| +typedef F7<T> = Function Function([Function x]) Function();
|
| +typedef F8<T> = Function Function(core.List<core.int> x0) Function();
|
| +typedef F9<T> = List<Function> Function(int x1, [int x2]) Function();
|
| +typedef F10<T> = List<Function> Function(int x0, {List<Function> x}) Function();
|
| +typedef F11<T> = core.List<core.int> Function(int x) Function();
|
| +typedef F12<T> = core.List<core.int> Function(int y, [List<Function> x])
|
| + Function();
|
| +typedef F13<T> = core.List<core.int> Function(int x1, [List<T> x2]) Function();
|
| +typedef F14<T> = List<T> Function({Function x}) Function();
|
| +typedef F15<T> = List<T> Function(List<T> x) Function();
|
| +typedef F16<T> = Function(int x0, [Function x]) Function();
|
| +typedef F17<T> = Function([core.List<core.int> x1]) Function();
|
| +typedef F18<T> = void Function(int x, [int x2]) Function();
|
| +typedef F19<T> = void Function(int y, {List<Function> x}) Function();
|
| +typedef F20<T> = int Function<A>(Function x) Function();
|
| +typedef F21<T> = core.List<core.int> Function<A>(List<Function> x) Function();
|
| +typedef F22<T> = A Function<A>(core.List<core.int> x) Function();
|
| +typedef F23<T> = void Function(B x) Function<B extends core.int>();
|
|
|
| int f0(int y, [core.List<core.int> x]) => null;
|
| List<Function> f1(int x0, [List<Function> x]) => null;
|
| @@ -262,7 +233,7 @@ class U36<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);
|
| });
|
| @@ -338,7 +309,7 @@ class U36<T> {
|
| Expect.equals(tIsDynamic, m4 is F4<bool>);
|
| Expect.equals(tIsDynamic, confuse(m4) is F4<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x4 = (f4 as dynamic);
|
| });
|
| @@ -545,8 +516,8 @@ class U36<T> {
|
| }
|
|
|
| Expect.isTrue(m12 is F12);
|
| - Expect.isTrue(m12 is core.List<core.int> Function(int y,
|
| - [List<Function> x]) Function());
|
| + Expect.isTrue(m12 is core.List<core.int> Function(int y, [List<Function> x])
|
| + Function());
|
| Expect.isTrue(confuse(m12) is F12);
|
| // In checked mode, verifies the type.
|
| x12 = m12;
|
| @@ -586,7 +557,7 @@ class U36<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);
|
| });
|
| @@ -638,7 +609,7 @@ class U36<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);
|
| });
|
| @@ -690,7 +661,7 @@ class U36<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);
|
| });
|
|
|