2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
15.5.5.2 defines [[GetOwnProperty]] for Strings. It supports using indexing
|
|
|
|
notation to look up non numeric property names.
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.5.5.5.2-3-5
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
String object indexing returns undefined if the numeric index (
|
|
|
|
2^32-1) is not an array index
|
|
|
|
---*/
|
|
|
|
|
2018-02-15 21:39:13 +01:00
|
|
|
var s = new String("hello world");
|
2014-07-22 01:09:02 +02:00
|
|
|
|
2018-02-15 21:39:13 +01:00
|
|
|
assert.sameValue(s[Math.pow(2, 32) - 1], undefined, 's[Math.pow(2, 32)-1]');
|