summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-i-27.js
blob: 9e8618f62cc8e017c4f9dcc8a1527f6870a7df5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.lastindexof
description: >
    Array.prototype.lastIndexOf applied to Arguments object which
    implements its own property get method (number of arguments is
    greater than number of parameters)
---*/

var func = function(a, b) {
  assert.sameValue(Array.prototype.lastIndexOf.call(arguments, arguments[0]), 2);
  assert.sameValue(Array.prototype.lastIndexOf.call(arguments, arguments[3]), 3);
  assert.sameValue(Array.prototype.lastIndexOf.call(arguments, arguments[4]), -1);
};

(function() {
  func(0, arguments, 0, Object.prototype);
})();

reportCompare(0, 0);