summaryrefslogtreecommitdiff
path: root/test/built-ins/NativeErrors/ReferenceError/constructor.js
blob: 085dd391d6c876085b7a79247683de39b6360412 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 19.5.6.1
description: >
  ReferenceError is a constructor function.
---*/

assert.sameValue(typeof ReferenceError, 'function', 'typeof ReferenceError is "function"');