Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / NativeErrors / EvalError / constructor.js
blob63982fbbdc3e653f292e561c3f421d3341367a1a
1 // Copyright (C) 2015 AndrĂ© Bargull. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es6id: 19.5.6.1
6 description: >
7   EvalError is a constructor function.
8 ---*/
10 assert.sameValue(typeof EvalError, 'function', 'typeof EvalError is "function"');
12 reportCompare(0, 0);