summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/from/source-object-constructor.js
blob: 7a0d1db9f19b0997f5a4fc2d5157452ec7bccd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2015 Microsoft Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.

/*---
description: >
    Array.from uses a constructor other than Array.
esid: sec-array.from
es6id: 22.1.2.1
---*/

assert.sameValue(
  Array.from.call(Object, []).constructor,
  Object,
  'The value of Array.from.call(Object, []).constructor is expected to equal the value of Object'
);

reportCompare(0, 0);