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

Unified Diff: pkg/expect/lib/expect.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
« no previous file with comments | « pkg/compiler/lib/src/options.dart ('k') | tests/co19/co19-dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/expect/lib/expect.dart
diff --git a/pkg/expect/lib/expect.dart b/pkg/expect/lib/expect.dart
index 3becc94b9dbbb66fb4c1d0636130a6a2ad613cab..22449c12d4b2bd97f6fca16912d30f12fde2d3db 100644
--- a/pkg/expect/lib/expect.dart
+++ b/pkg/expect/lib/expect.dart
@@ -503,3 +503,28 @@ class TrustTypeAnnotations {
class AssumeDynamic {
const AssumeDynamic();
}
+
+/// Is true iff type assertions are enabled.
+final bool typeAssertionsEnabled = (() {
+ try {
+ var i = 42;
+ String s = i;
+ } on TypeError catch (e) {
+ return true;
+ }
+ return false;
+})();
+
+/// Is true iff `assert` statements are enabled.
+final bool assertStatementsEnabled = (() {
+ try {
+ assert(false);
+ } on AssertionError catch (e) {
+ return true;
+ }
+ return false;
+})();
+
+/// Is true iff checked mode is enabled.
+final bool checkedModeEnabled =
+ typeAssertionsEnabled && assertStatementsEnabled;
« no previous file with comments | « pkg/compiler/lib/src/options.dart ('k') | tests/co19/co19-dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698