| Index: test/mjsunit/es6/array-of-generic-2.js
|
| diff --git a/test/mjsunit/es6/array-of-generic-2.js b/test/mjsunit/es6/array-of-generic-2.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..777ccf63f5d0d7bc6ab2c3afba96a39128f10d4c
|
| --- /dev/null
|
| +++ b/test/mjsunit/es6/array-of-generic-2.js
|
| @@ -0,0 +1,22 @@
|
| +// 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.
|
| +
|
| +// Based on: https://hg.mozilla.org/mozilla-central/file/d0c3168c3c47/js/src/jit-test/tests/collections/Array-of-generic-2.js
|
| +
|
| +// Flags: --harmony-arrays
|
| +
|
| +
|
| +// Array.of passes the number of arguments to the constructor it calls.
|
| +
|
| +var hits = 0;
|
| +
|
| +function Herd(n) {
|
| + assertEquals(arguments.length, 1);
|
| + assertEquals(n, 5);
|
| + hits++;
|
| +}
|
| +
|
| +Herd.of = Array.of;
|
| +Herd.of("sheep", "cattle", "elephants", "whales", "seals");
|
| +assertEquals(hits, 1);
|
|
|