Index: tests/language/function_type/function_type17_test.dart |
diff --git a/tests/language/function_type/function_type17_test.dart b/tests/language/function_type/function_type17_test.dart |
index 489b9b951271d660de7f120c7550d628847e1671..241cf394e29179b9aa84b9386b599b92df9ca564 100644 |
--- a/tests/language/function_type/function_type17_test.dart |
+++ b/tests/language/function_type/function_type17_test.dart |
@@ -19,60 +19,32 @@ 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 x1, [Function x2]); |
-typedef F1<T> |
- = List<Function> Function([int x1]); |
-typedef F2<T> |
- = core.List<core.int> Function([List<T> x1]); |
-typedef F3<T> |
- = Function(core.List<core.int> x0); |
-typedef F4<T> |
- = core.List<core.int> Function<A>(Function x); |
-typedef F5<T> |
- = int Function(int x1, [Function x]) Function(int x); |
-typedef F6<T> |
- = int Function([core.List<core.int> x1]) Function(int x); |
-typedef F7<T> |
- = Function Function(int x, [int x1]) Function(int x); |
-typedef F8<T> |
- = Function Function(int y, {List<Function> x}) Function(int x); |
-typedef F9<T> |
- = List<Function> Function([int x]) Function(int x); |
-typedef F10<T> |
- = List<Function> Function(List<Function> x1) Function(int x); |
-typedef F11<T> |
- = List<Function> Function(int x, [List<T> x1]) Function(int x); |
-typedef F12<T> |
- = core.List<core.int> Function(int x1, {Function x}) Function(int x); |
-typedef F13<T> |
- = core.List<core.int> Function([List<T> x]) Function(int x); |
-typedef F14<T> |
- = List<T> Function(int y, [Function x]) Function(int x); |
-typedef F15<T> |
- = List<T> Function(int x2, [core.List<core.int> x3]) Function(int x); |
-typedef F16<T> |
- = Function({int x}) Function(int x); |
-typedef F17<T> |
- = Function(core.List<core.int> x) Function(int x); |
-typedef F18<T> |
- = void Function(int x1, [int x]) Function(int x); |
-typedef F19<T> |
- = void Function([List<Function> x1]) Function(int x); |
-typedef F20<T> |
- = void Function({List<T> x}) Function(int x); |
-typedef F21<T> |
- = List<Function> Function<A>() Function(int x); |
-typedef F22<T> |
- = Function<A>(A x) Function(int x); |
-typedef F23<T> |
- = void Function<A>(List<A> x) Function(int x); |
+typedef F0<T> = int Function(int x1, [Function x2]); |
+typedef F1<T> = List<Function> Function([int x1]); |
+typedef F2<T> = core.List<core.int> Function([List<T> x1]); |
+typedef F3<T> = Function(core.List<core.int> x0); |
+typedef F4<T> = core.List<core.int> Function<A>(Function x); |
+typedef F5<T> = int Function(int x1, [Function x]) Function(int x); |
+typedef F6<T> = int Function([core.List<core.int> x1]) Function(int x); |
+typedef F7<T> = Function Function(int x, [int x1]) Function(int x); |
+typedef F8<T> = Function Function(int y, {List<Function> x}) Function(int x); |
+typedef F9<T> = List<Function> Function([int x]) Function(int x); |
+typedef F10<T> = List<Function> Function(List<Function> x1) Function(int x); |
+typedef F11<T> = List<Function> Function(int x, [List<T> x1]) Function(int x); |
+typedef F12<T> = core.List<core.int> Function(int x1, {Function x}) Function( |
+ int x); |
+typedef F13<T> = core.List<core.int> Function([List<T> x]) Function(int x); |
+typedef F14<T> = List<T> Function(int y, [Function x]) Function(int x); |
+typedef F15<T> = List<T> Function(int x2, [core.List<core.int> x3]) Function( |
+ int x); |
+typedef F16<T> = Function({int x}) Function(int x); |
+typedef F17<T> = Function(core.List<core.int> x) Function(int x); |
+typedef F18<T> = void Function(int x1, [int x]) Function(int x); |
+typedef F19<T> = void Function([List<Function> x1]) Function(int x); |
+typedef F20<T> = void Function({List<T> x}) Function(int x); |
+typedef F21<T> = List<Function> Function<A>() Function(int x); |
+typedef F22<T> = Function<A>(A x) Function(int x); |
+typedef F23<T> = void Function<A>(List<A> x) Function(int x); |
int f0(int x0, [Function x1]) => null; |
List<Function> f1([int x0]) => null; |
@@ -262,7 +234,7 @@ class U17<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); |
}); |
@@ -509,7 +481,7 @@ class U17<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); |
}); |
@@ -546,8 +518,8 @@ class U17<T> { |
} |
Expect.isTrue(m12 is F12); |
- Expect.isTrue(m12 is core.List<core.int> Function(int x1, |
- {Function x}) Function(int x)); |
+ Expect.isTrue(m12 is core.List<core.int> Function(int x1, {Function x}) |
+ Function(int x)); |
Expect.isTrue(confuse(m12) is F12); |
// In checked mode, verifies the type. |
x12 = m12; |
@@ -587,7 +559,7 @@ class U17<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); |
}); |
@@ -639,7 +611,7 @@ class U17<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); |
}); |
@@ -676,8 +648,8 @@ class U17<T> { |
} |
Expect.isTrue(m15 is F15); |
- Expect.isTrue(m15 is List<T> Function(int x2, |
- [core.List<core.int> x3]) Function(int x)); |
+ Expect.isTrue(m15 is List<T> Function(int x2, [core.List<core.int> x3]) |
+ Function(int x)); |
Expect.isTrue(confuse(m15) is F15); |
// In checked mode, verifies the type. |
x15 = m15; |
@@ -692,7 +664,7 @@ class U17<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); |
}); |
@@ -841,7 +813,7 @@ class U17<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); |
}); |