OpenQuickJS / quickjs

A community-driven QuickJS fork. Issues and Pull Requests are welcome.
https://openquickjs.org
Other
20 stars 3 forks source link

Array.prototype.indexOf.call #2

Closed shiqimei closed 1 year ago

shiqimei commented 1 year ago

test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-1-8.js:9: strict mode: unexpected error: Test262Error: Array.prototype.indexOf.call(obj, "l") Expected SameValue(«-1», «2») to be true test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-18.js:11: unexpected error: Test262Error: Array.prototype.indexOf.call(str, "2") Expected SameValue(«-1», «2») to be true test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-2-18.js:11: strict mode: unexpected error: Test262Error: Array.prototype.indexOf.call(str, "2") Expected SameValue(«-1», «2») to be true test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js:16: unexpected error: Test262Error: Array.prototype.indexOf.call(objOne, true) Expected SameValue(«-1», «0») to be true test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js:16: strict mode: unexpected error: Test262Error: Array.prototype.indexOf.call(objOne, true) Expected SameValue(«-1», «0») to be true

shiqimei commented 1 year ago

test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js:16: unexpected error: Test262Error: Array.prototype.indexOf.call(objOne, true) Expected SameValue(«-1», «0») to be true test262/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-14.js:16: strict mode: unexpected error: Test262Error: Array.prototype.indexOf.call(objOne, true) Expected SameValue(«-1», «0») to be true

shiqimei commented 1 year ago
// 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.indexof
description: >
    Array.prototype.indexOf - 'length' is a string containing
    +/-Infinity
---*/

var objOne = {
  0: true,
  1: true,
  length: "Infinity"
};
var objTwo = {
  0: true,
  1: true,
  length: "+Infinity"
};
var objThree = {
  0: true,
  1: true,
  length: "-Infinity"
};

assert.sameValue(Array.prototype.indexOf.call(objOne, true), 0, 'Array.prototype.indexOf.call(objOne, true)');
assert.sameValue(Array.prototype.indexOf.call(objTwo, true), 0, 'Array.prototype.indexOf.call(objTwo, true)');
assert.sameValue(Array.prototype.indexOf.call(objThree, true), -1, 'Array.prototype.indexOf.call(objThree, true)');
shiqimei commented 1 year ago
Array.prototype.indexOf.call({ 0: true, 1: true, length: 'Infinity' }, true)
shiqimei commented 1 year ago

Closes via https://github.com/OpenQuickJS/quickjs/commit/be4149a11089efd24dcae7259bd35c729f14cc39