summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/constructor.js
blob: c6ab6e689e5f70bef6d7db46b29e8c4d439fd001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-typedarray-constructors
description: >
  Int32Array is a constructor function.
features: [TypedArray]
---*/

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

reportCompare(0, 0);