Index: tests/language/function_type/function_type0_test.dart |
diff --git a/tests/language/function_type/function_type0_test.dart b/tests/language/function_type/function_type0_test.dart |
index 3d2715736cdbff00fdd29da5f7b0419527ebadcf..9b8ca4df86575ff28eb507a9207231d8d8afac62 100644 |
--- a/tests/language/function_type/function_type0_test.dart |
+++ b/tests/language/function_type/function_type0_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 x); |
-typedef F1<T> |
- = Function Function(List<T> x); |
-typedef F2<T> |
- = core.List<core.int> Function(int y, {List<Function> x}); |
-typedef F3<T> |
- = Function(int x0, {Function x}); |
-typedef F4<T> |
- = Function Function<A>(int x); |
-typedef F5<T> |
- = int Function(int x0, {int x}) Function(); |
-typedef F6<T> |
- = int Function([core.List<core.int> x]) Function(); |
-typedef F7<T> |
- = Function Function(int y, [int x]) Function(); |
-typedef F8<T> |
- = Function Function(int x1, [List<Function> x2]) Function(); |
-typedef F9<T> |
- = Function Function(int x0, {List<T> x}) Function(); |
-typedef F10<T> |
- = List<Function> Function(List<Function> x) Function(); |
-typedef F11<T> |
- = List<Function> Function(int y, [List<T> x]) Function(); |
-typedef F12<T> |
- = core.List<core.int> Function([Function x1]) Function(); |
-typedef F13<T> |
- = core.List<core.int> Function({core.List<core.int> x}) Function(); |
-typedef F14<T> |
- = List<T> Function(int y, {int x}) Function(); |
-typedef F15<T> |
- = List<T> Function(int x0, [core.List<core.int> x]) Function(); |
-typedef F16<T> |
- = Function(int x0) Function(); |
-typedef F17<T> |
- = Function(int x, [List<Function> x2]) Function(); |
-typedef F18<T> |
- = Function(int y, {List<T> x}) Function(); |
-typedef F19<T> |
- = void Function([List<Function> x]) Function(); |
-typedef F20<T> |
- = void Function(List<T> x0) Function(); |
-typedef F21<T> |
- = List<Function> Function<A>(Function x) Function(); |
-typedef F22<T> |
- = Function<A>(List<Function> x) Function(); |
-typedef F23<T> |
- = void Function<A>(core.List<core.int> x) Function(); |
+typedef F0<T> = int Function(int x); |
+typedef F1<T> = Function Function(List<T> x); |
+typedef F2<T> = core.List<core.int> Function(int y, {List<Function> x}); |
+typedef F3<T> = Function(int x0, {Function x}); |
+typedef F4<T> = Function Function<A>(int x); |
+typedef F5<T> = int Function(int x0, {int x}) Function(); |
+typedef F6<T> = int Function([core.List<core.int> x]) Function(); |
+typedef F7<T> = Function Function(int y, [int x]) Function(); |
+typedef F8<T> = Function Function(int x1, [List<Function> x2]) Function(); |
+typedef F9<T> = Function Function(int x0, {List<T> x}) Function(); |
+typedef F10<T> = List<Function> Function(List<Function> x) Function(); |
+typedef F11<T> = List<Function> Function(int y, [List<T> x]) Function(); |
+typedef F12<T> = core.List<core.int> Function([Function x1]) Function(); |
+typedef F13<T> = core.List<core.int> Function({core.List<core.int> x}) |
+ Function(); |
+typedef F14<T> = List<T> Function(int y, {int x}) Function(); |
+typedef F15<T> = List<T> Function(int x0, [core.List<core.int> x]) Function(); |
+typedef F16<T> = Function(int x0) Function(); |
+typedef F17<T> = Function(int x, [List<Function> x2]) Function(); |
+typedef F18<T> = Function(int y, {List<T> x}) Function(); |
+typedef F19<T> = void Function([List<Function> x]) Function(); |
+typedef F20<T> = void Function(List<T> x0) Function(); |
+typedef F21<T> = List<Function> Function<A>(Function x) Function(); |
+typedef F22<T> = Function<A>(List<Function> x) Function(); |
+typedef F23<T> = void Function<A>(core.List<core.int> x) Function(); |
int f0(int x) => null; |
Function f1(List<int> x) => null; |
@@ -238,7 +209,7 @@ class U0<T> { |
Expect.equals(tIsDynamic, m1 is F1<bool>); |
Expect.equals(tIsDynamic, confuse(m1) is F1<bool>); |
} else { |
- if (inCheckedMode) { |
+ if (typeAssertionsEnabled) { |
Expect.throws(() { |
x1 = (f1 as dynamic); |
}); |
@@ -460,7 +431,7 @@ class U0<T> { |
Expect.equals(tIsDynamic, m9 is F9<bool>); |
Expect.equals(tIsDynamic, confuse(m9) is F9<bool>); |
} else { |
- if (inCheckedMode) { |
+ if (typeAssertionsEnabled) { |
Expect.throws(() { |
x9 = (f9 as dynamic); |
}); |
@@ -537,7 +508,7 @@ class U0<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); |
}); |
@@ -599,8 +570,8 @@ class U0<T> { |
} |
Expect.isTrue(m13 is F13); |
- Expect.isTrue(m13 is core.List<core.int> Function( |
- {core.List<core.int> x}) Function()); |
+ Expect.isTrue(m13 is core.List<core.int> Function({core.List<core.int> x}) |
+ Function()); |
Expect.isTrue(confuse(m13) is F13); |
// In checked mode, verifies the type. |
x13 = m13; |
@@ -639,7 +610,7 @@ class U0<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); |
}); |
@@ -692,7 +663,7 @@ class U0<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); |
}); |
@@ -792,7 +763,7 @@ class U0<T> { |
Expect.equals(tIsDynamic, m18 is F18<bool>); |
Expect.equals(tIsDynamic, confuse(m18) is F18<bool>); |
} else { |
- if (inCheckedMode) { |
+ if (typeAssertionsEnabled) { |
Expect.throws(() { |
x18 = (f18 as dynamic); |
}); |
@@ -868,7 +839,7 @@ class U0<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); |
}); |