author | hannesw |
Wed, 25 Jun 2014 14:36:24 +0200 | |
changeset 25243 | 7a1edca6ce94 |
parent 24778 | 2ff5d7041566 |
permissions | -rw-r--r-- |
19465
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
1 |
/* |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
2 |
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
19465
diff
changeset
|
4 |
* |
19465
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
19465
diff
changeset
|
8 |
* |
19465
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
13 |
* accompanied this code). |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
19465
diff
changeset
|
14 |
* |
19465
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
19465
diff
changeset
|
18 |
* |
19465
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
21 |
* questions. |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
22 |
*/ |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
23 |
|
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
24 |
/** |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
25 |
* JDK-8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
26 |
* |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
27 |
* @test |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
28 |
* @run |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
29 |
*/ |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
30 |
|
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
31 |
// the following should not throw TypeError, just return null instead |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
32 |
|
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
33 |
var proto = Object.getPrototypeOf(new java.lang.Object()); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
34 |
if (proto !== null) { |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
35 |
fail("Expected 'null' __proto__ for host objects"); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
36 |
} |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
37 |
|
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
38 |
// on primitive should result in TypeError |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
39 |
|
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
40 |
function checkTypeError(obj) { |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
41 |
try { |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
42 |
Object.getPrototypeOf(obj); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
43 |
fail("Expected TypeError for Object.getPrototypeOf on " + obj); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
44 |
} catch (e) { |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
45 |
if (! (e instanceof TypeError)) { |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
46 |
fail("Expected TypeError, but got " + e); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
47 |
} |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
48 |
} |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
49 |
} |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
50 |
|
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
51 |
checkTypeError(undefined); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
52 |
checkTypeError(null); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
53 |
checkTypeError(3.1415); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
54 |
checkTypeError("hello"); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
55 |
checkTypeError(false); |
0dcae2f1ca9f
8022598: Object.getPrototypeOf should return null for host objects rather than throwing TypeError
sundar
parents:
diff
changeset
|
56 |
checkTypeError(true); |