author | sundar |
Wed, 06 May 2015 20:04:42 +0530 | |
changeset 30394 | 72a59e4dffea |
parent 25248 | f3681ebb1f21 |
permissions | -rw-r--r-- |
25248
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
1 |
/* |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
2 |
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
4 |
* |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
8 |
* |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
13 |
* accompanied this code). |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
14 |
* |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
18 |
* |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
21 |
* questions. |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
22 |
*/ |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
23 |
|
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
24 |
/** |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
25 |
* JDK-8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
26 |
* |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
27 |
* @test |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
28 |
* @run |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
29 |
*/ |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
30 |
|
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
31 |
var obj = JSON.parse('{"0":0, "64":0}'); |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
32 |
if ("1" in obj) { |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
33 |
fail("found element at index 1"); |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
34 |
} |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
35 |
|
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
36 |
if ("63" in obj) { |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
37 |
fail("found element at index 63"); |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
38 |
} |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
39 |
|
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
40 |
if (obj[0] != 0) { |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
41 |
fail("expected obj[0] to be 0"); |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
42 |
} |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
43 |
|
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
44 |
if (obj[64] != 0) { |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
45 |
fail("expected obj[64] to be 0"); |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
46 |
} |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
47 |
|
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
48 |
for (var i in obj) { |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
49 |
if (i != "0" && i != "64") { |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
50 |
fail("invalid property " + i); |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
51 |
} |
f3681ebb1f21
8048718: JSON.parse('{"0":0, "64":0}') throws ArrayindexOutOfBoundsException
sundar
parents:
diff
changeset
|
52 |
} |