mirror of https://github.com/tc39/test262.git
16 lines
486 B
JavaScript
16 lines
486 B
JavaScript
// Copyright (c) 2017 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
description: >
|
|
Including sta.js will expose three functions:
|
|
|
|
Test262Error
|
|
Test262Error.thrower
|
|
$DONOTEVALUATE
|
|
---*/
|
|
|
|
assert(typeof Test262Error === "function");
|
|
assert(typeof Test262Error.prototype.toString === "function");
|
|
assert(typeof Test262Error.thrower === "function");
|
|
assert(typeof $DONOTEVALUATE === "function");
|