mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 16:01:52 +00:00

PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
15 lines
457 B
JavaScript
15 lines
457 B
JavaScript
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
"use strict";
|
|
class NonArray {
|
|
constructor() { Array.apply(this, arguments); }
|
|
};
|
|
|
|
var obj = new NonArray(1,2,3);
|
|
var result = Array.prototype.concat.call(obj, 4, 5, 6);
|
|
assertEquals(Array, result.constructor);
|
|
assertEquals([obj,4,5,6], result);
|
|
assertFalse(result instanceof NonArray);
|