| Index: tests/language/function_type/function_type16_test.dart
|
| diff --git a/tests/language/function_type/function_type16_test.dart b/tests/language/function_type/function_type16_test.dart
|
| index 39b6f539103060b949f99045fe5b7a949cdde86b..fec44f86c9c30b6019d132f0228bcb0129538209 100644
|
| --- a/tests/language/function_type/function_type16_test.dart
|
| +++ b/tests/language/function_type/function_type16_test.dart
|
| @@ -19,60 +19,30 @@ 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([Function x1]);
|
| -typedef F1<T>
|
| - = List<Function> Function(int x0);
|
| -typedef F2<T>
|
| - = core.List<core.int> Function(List<T> x0);
|
| -typedef F3<T>
|
| - = Function(int y, [core.List<core.int> x]);
|
| -typedef F4<T>
|
| - = core.List<core.int> Function<A>(int x);
|
| -typedef F5<T>
|
| - = int Function(int x0, [Function x]) Function();
|
| -typedef F6<T>
|
| - = int Function([core.List<core.int> x1]) Function();
|
| -typedef F7<T>
|
| - = Function Function(int x, [int x2]) Function();
|
| -typedef F8<T>
|
| - = Function Function(int y, {List<Function> x}) Function();
|
| -typedef F9<T>
|
| - = List<Function> Function([int x]) Function();
|
| -typedef F10<T>
|
| - = List<Function> Function(List<Function> x0) Function();
|
| -typedef F11<T>
|
| - = List<Function> Function(int x, [List<T> x2]) Function();
|
| -typedef F12<T>
|
| - = core.List<core.int> Function(int x0, {Function x}) Function();
|
| -typedef F13<T>
|
| - = core.List<core.int> Function([List<T> x]) Function();
|
| -typedef F14<T>
|
| - = List<T> Function(int y, [Function x]) Function();
|
| -typedef F15<T>
|
| - = List<T> Function(int x1, [core.List<core.int> x2]) Function();
|
| -typedef F16<T>
|
| - = Function({int x}) Function();
|
| -typedef F17<T>
|
| - = Function(core.List<core.int> x) Function();
|
| -typedef F18<T>
|
| - = void Function(int x0, [int x]) Function();
|
| -typedef F19<T>
|
| - = void Function([List<Function> x1]) Function();
|
| -typedef F20<T>
|
| - = void Function({List<T> x}) Function();
|
| -typedef F21<T>
|
| - = List<Function> Function<A>() Function();
|
| -typedef F22<T>
|
| - = Function<A>(A x) Function();
|
| -typedef F23<T>
|
| - = void Function<A>(List<A> x) Function();
|
| +typedef F0<T> = int Function([Function x1]);
|
| +typedef F1<T> = List<Function> Function(int x0);
|
| +typedef F2<T> = core.List<core.int> Function(List<T> x0);
|
| +typedef F3<T> = Function(int y, [core.List<core.int> x]);
|
| +typedef F4<T> = core.List<core.int> Function<A>(int x);
|
| +typedef F5<T> = int Function(int x0, [Function x]) Function();
|
| +typedef F6<T> = int Function([core.List<core.int> x1]) Function();
|
| +typedef F7<T> = Function Function(int x, [int x2]) Function();
|
| +typedef F8<T> = Function Function(int y, {List<Function> x}) Function();
|
| +typedef F9<T> = List<Function> Function([int x]) Function();
|
| +typedef F10<T> = List<Function> Function(List<Function> x0) Function();
|
| +typedef F11<T> = List<Function> Function(int x, [List<T> x2]) Function();
|
| +typedef F12<T> = core.List<core.int> Function(int x0, {Function x}) Function();
|
| +typedef F13<T> = core.List<core.int> Function([List<T> x]) Function();
|
| +typedef F14<T> = List<T> Function(int y, [Function x]) Function();
|
| +typedef F15<T> = List<T> Function(int x1, [core.List<core.int> x2]) Function();
|
| +typedef F16<T> = Function({int x}) Function();
|
| +typedef F17<T> = Function(core.List<core.int> x) Function();
|
| +typedef F18<T> = void Function(int x0, [int x]) Function();
|
| +typedef F19<T> = void Function([List<Function> x1]) Function();
|
| +typedef F20<T> = void Function({List<T> x}) Function();
|
| +typedef F21<T> = List<Function> Function<A>() Function();
|
| +typedef F22<T> = Function<A>(A x) Function();
|
| +typedef F23<T> = void Function<A>(List<A> x) Function();
|
|
|
| int f0([Function x0]) => null;
|
| List<Function> f1(int x0) => null;
|
| @@ -262,7 +232,7 @@ class U16<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);
|
| });
|
| @@ -508,7 +478,7 @@ class U16<T> {
|
| Expect.equals(tIsDynamic, m11 is F11<bool>);
|
| Expect.equals(tIsDynamic, confuse(m11) is F11<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x11 = (f11 as dynamic);
|
| });
|
| @@ -585,7 +555,7 @@ class U16<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);
|
| });
|
| @@ -637,7 +607,7 @@ class U16<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 +660,7 @@ class U16<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);
|
| });
|
| @@ -838,7 +808,7 @@ class U16<T> {
|
| Expect.equals(tIsDynamic, m20 is F20<bool>);
|
| Expect.equals(tIsDynamic, confuse(m20) is F20<bool>);
|
| } else {
|
| - if (inCheckedMode) {
|
| + if (typeAssertionsEnabled) {
|
| Expect.throws(() {
|
| x20 = (f20 as dynamic);
|
| });
|
|
|