Quelle test_js_dev_error_interceptor.js
Sprache: JAVA
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
function errors() { return [ // The following two errors MUST NOT be captured. new Error("This is an error: " + Math.random()), new RangeError("This is a RangeError: " + Math.random()), new TypeError("This is a TypeError: " + Math.random()), "This is a string: " + Math.random(), null,
undefined,
Math.random(),
{},
// The following errors MUST be captured. new SyntaxError("This is a SyntaxError: " + Math.random()), new ReferenceError("This is a ReferenceError: " + Math.random()),
];
}
function isDeveloperError(e) { if (e == null || typeof e != "object") { returnfalse;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.