2017-06-23 17:08:58 +02:00
|
|
|
// Copyright (c) 2017 Rick Waldron. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
description: >
|
2021-07-20 21:17:52 +02:00
|
|
|
Including sta.js will expose three functions:
|
2017-06-23 17:08:58 +02:00
|
|
|
|
|
|
|
Test262Error
|
2021-07-20 21:17:52 +02:00
|
|
|
Test262Error.thrower
|
|
|
|
$DONOTEVALUATE
|
2017-06-23 17:08:58 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
assert(typeof Test262Error === "function");
|
|
|
|
assert(typeof Test262Error.prototype.toString === "function");
|
2021-07-20 21:17:52 +02:00
|
|
|
assert(typeof Test262Error.thrower === "function");
|
2018-10-11 16:59:24 +02:00
|
|
|
assert(typeof $DONOTEVALUATE === "function");
|