Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Unified Diff: tests/language/function_type/function_type93_test.dart

Issue 2879153005: Add support to dart2js for option --enable-asserts. (Closed)
Patch Set: Added !$checked to section predicate in co19 status file Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language/function_type/function_type93_test.dart
diff --git a/tests/language/function_type/function_type93_test.dart b/tests/language/function_type/function_type93_test.dart
index 50d44f4c33ab303214d9c5d171cf9187eddd299f..76af5211b85e0c91d28726152473bc23e428a0a9 100644
--- a/tests/language/function_type/function_type93_test.dart
+++ b/tests/language/function_type/function_type93_test.dart
@@ -19,59 +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>
- = Function Function(core.List<core.int> x0);
-typedef F1<T>
- = core.List<core.int> Function(int y, [List<Function> x]);
-typedef F2<T>
- = Function(int x0, [Function x]);
-typedef F3<T>
- = int Function<A>(Function x);
-typedef F4<T>
- = int Function(int x, [int x1]) Function(int x);
-typedef F5<T>
- = int Function(int y, {List<Function> x}) Function(int x);
-typedef F6<T>
- = Function Function([int x]) Function(int x);
-typedef F7<T>
- = Function Function(List<Function> x1) Function(int x);
-typedef F8<T>
- = Function Function(int x, [List<T> x1]) Function(int x);
-typedef F9<T>
- = List<Function> Function(int x1, {Function x}) Function(int x);
-typedef F10<T>
- = List<Function> Function([List<T> x]) Function(int x);
-typedef F11<T>
- = core.List<core.int> Function(int y, [Function x]) Function(int x);
-typedef F12<T>
- = core.List<core.int> Function(int x2, [core.List<core.int> x3]) Function(
- int x);
-typedef F13<T>
- = List<T> Function({int x}) Function(int x);
-typedef F14<T>
- = List<T> Function(core.List<core.int> x) Function(int x);
-typedef F15<T>
- = Function(int x1, [int x]) Function(int x);
-typedef F16<T>
- = Function([List<Function> x1]) Function(int x);
-typedef F17<T>
- = Function({List<T> x}) Function(int x);
-typedef F18<T>
- = void Function(int y, {Function x}) Function(int x);
-typedef F19<T>
- = void Function(int x1, [List<T> x]) Function(int x);
-typedef F20<T>
- = Function Function<A>(List<A> x) Function(int x);
-typedef F21<T>
- = Function<A>(int x) Function(int x);
-typedef F22<T>
- = void Function<A>(Function x) Function(int x);
+typedef F0<T> = Function Function(core.List<core.int> x0);
+typedef F1<T> = core.List<core.int> Function(int y, [List<Function> x]);
+typedef F2<T> = Function(int x0, [Function x]);
+typedef F3<T> = int Function<A>(Function x);
+typedef F4<T> = int Function(int x, [int x1]) Function(int x);
+typedef F5<T> = int Function(int y, {List<Function> x}) Function(int x);
+typedef F6<T> = Function Function([int x]) Function(int x);
+typedef F7<T> = Function Function(List<Function> x1) Function(int x);
+typedef F8<T> = Function Function(int x, [List<T> x1]) Function(int x);
+typedef F9<T> = List<Function> Function(int x1, {Function x}) Function(int x);
+typedef F10<T> = List<Function> Function([List<T> x]) Function(int x);
+typedef F11<T> = core.List<core.int> Function(int y, [Function x]) Function(
+ int x);
+typedef F12<T> = core.List<core.int> Function(int x2, [core.List<core.int> x3])
+ Function(int x);
+typedef F13<T> = List<T> Function({int x}) Function(int x);
+typedef F14<T> = List<T> Function(core.List<core.int> x) Function(int x);
+typedef F15<T> = Function(int x1, [int x]) Function(int x);
+typedef F16<T> = Function([List<Function> x1]) Function(int x);
+typedef F17<T> = Function({List<T> x}) Function(int x);
+typedef F18<T> = void Function(int y, {Function x}) Function(int x);
+typedef F19<T> = void Function(int x1, [List<T> x]) Function(int x);
+typedef F20<T> = Function Function<A>(List<A> x) Function(int x);
+typedef F21<T> = Function<A>(int x) Function(int x);
+typedef F22<T> = void Function<A>(Function x) Function(int x);
Function f0(core.List<core.int> x0) => null;
core.List<core.int> f1(int y, [List<Function> x]) => null;
@@ -406,7 +378,7 @@ class U93<T> {
Expect.equals(tIsDynamic, m8 is F8<bool>);
Expect.equals(tIsDynamic, confuse(m8) is F8<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x8 = (f8 as dynamic);
});
@@ -483,7 +455,7 @@ class U93<T> {
Expect.equals(tIsDynamic, m10 is F10<bool>);
Expect.equals(tIsDynamic, confuse(m10) is F10<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x10 = (f10 as dynamic);
});
@@ -520,8 +492,8 @@ class U93<T> {
}
Expect.isTrue(m11 is F11);
- Expect.isTrue(m11 is core.List<core.int> Function(int y,
- [Function x]) Function(int x));
+ Expect.isTrue(m11 is core.List<core.int> Function(int y, [Function x])
+ Function(int x));
Expect.isTrue(confuse(m11) is F11);
// In checked mode, verifies the type.
x11 = m11;
@@ -547,7 +519,8 @@ class U93<T> {
Expect.isTrue(m12 is F12);
Expect.isTrue(m12 is core.List<core.int> Function(int x2,
- [core.List<core.int> x3]) Function(int x));
+ [core.List<core.int> x3])
+ Function(int x));
Expect.isTrue(confuse(m12) is F12);
// In checked mode, verifies the type.
x12 = m12;
@@ -586,7 +559,7 @@ class U93<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 +612,7 @@ class U93<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);
});
@@ -739,7 +712,7 @@ class U93<T> {
Expect.equals(tIsDynamic, m17 is F17<bool>);
Expect.equals(tIsDynamic, confuse(m17) is F17<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x17 = (f17 as dynamic);
});
@@ -815,7 +788,7 @@ class U93<T> {
Expect.equals(tIsDynamic, m19 is F19<bool>);
Expect.equals(tIsDynamic, confuse(m19) is F19<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x19 = (f19 as dynamic);
});
« no previous file with comments | « tests/language/function_type/function_type92_test.dart ('k') | tests/language/function_type/function_type94_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698