author | hannesw |
Fri, 03 May 2013 22:48:53 +0200 | |
changeset 17521 | 0522325da5ef |
parent 16530 | 201d682e75f4 |
child 24778 | 2ff5d7041566 |
permissions | -rw-r--r-- |
16157
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
1 |
/* |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
2 |
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
4 |
* |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
8 |
* |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
13 |
* accompanied this code). |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
14 |
* |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
18 |
* |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
21 |
* questions. |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
22 |
*/ |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
23 |
|
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
24 |
/** |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
25 |
* NASHORN-837 : refSymbol lookup caused nullpointer exception in Lower |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
26 |
* |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
27 |
* @test |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
28 |
* @run |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
29 |
*/ |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
30 |
|
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
31 |
try { |
16530
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
32 |
throw new TypeError('error'); |
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
33 |
} catch (iox) { |
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
34 |
var f = function() { |
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
35 |
if(iox.message != 'error') { |
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
36 |
print("Failure! iox did not throw correct exception"); |
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
37 |
} |
16157
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
38 |
} |
a14081edd7ff
8005843: refSymbols lookup of unbound variable could cause NullPointerException in Lower
lagergren
parents:
diff
changeset
|
39 |
} |
16530
201d682e75f4
8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
attila
parents:
16157
diff
changeset
|
40 |
f(); |