author | martin |
Wed, 10 Dec 2014 09:23:00 -0800 | |
changeset 28057 | 1a47ceecdba5 |
parent 24778 | 2ff5d7041566 |
permissions | -rw-r--r-- |
16147 | 1 |
/* |
16151 | 2 |
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
16147 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
4 |
* |
16147 | 5 |
* This code is free software; you can redistribute it and/or modify it |
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
8 |
* |
16147 | 9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
14 |
* |
16147 | 15 |
* You should have received a copy of the GNU General Public License version |
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
18 |
* |
16147 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
24 |
/** |
|
25 |
* Mostly for-in iterations through esoteric collections |
|
26 |
* |
|
27 |
* @test |
|
28 |
* @run |
|
29 |
*/ |
|
30 |
||
31 |
for (y in {}) { |
|
32 |
y = 2; |
|
33 |
} |
|
34 |
||
35 |
try { |
|
36 |
null['foo']; |
|
37 |
print("error 1"); |
|
38 |
} catch(e) { |
|
39 |
if ((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
40 |
print(e); |
16147 | 41 |
} |
42 |
} |
|
43 |
||
44 |
try { |
|
45 |
with(null) x = 2; |
|
46 |
print("error 2"); |
|
47 |
} catch(e) { |
|
48 |
if((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
49 |
print(e); |
16147 | 50 |
} |
51 |
} |
|
52 |
||
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
53 |
try { |
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
54 |
for (var y in null) { |
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
55 |
y = 2; |
16147 | 56 |
} |
57 |
print("this is ok 1"); |
|
58 |
} catch(e) { |
|
59 |
if ((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
60 |
print(e); |
16147 | 61 |
} |
62 |
} |
|
63 |
||
64 |
// CHECK#4 |
|
65 |
try { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
66 |
for (var z in 'bbb'.match(/aaa/)) { |
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
67 |
z = 2; |
16147 | 68 |
} |
69 |
print("this is ok 2"); |
|
70 |
} catch(e) { |
|
71 |
if((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
72 |
print(e); |
16147 | 73 |
} |
74 |
} |
|
75 |
||
76 |
||
77 |
try { |
|
78 |
undefined['foo']; |
|
79 |
print("error 5"); |
|
80 |
} catch(e) { |
|
81 |
if ((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
82 |
print(e); |
16147 | 83 |
} |
84 |
} |
|
85 |
||
86 |
try { |
|
87 |
with(undefined) x = 2; |
|
88 |
print("error 6"); |
|
89 |
} catch (e) { |
|
90 |
if ((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
91 |
print(e); |
16147 | 92 |
} |
93 |
} |
|
94 |
||
95 |
// CHECK#3 |
|
96 |
try { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
97 |
for (var y in undefined) { |
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
98 |
y = 2; |
16147 | 99 |
} |
100 |
print("this is ok 3"); |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
101 |
} catch (e) { |
16147 | 102 |
if ((e instanceof TypeError) !== true) { |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
103 |
print(e); |
16147 | 104 |
} |
105 |
} |
|
106 |
||
107 |
try { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
108 |
for (var z in this.foo) { |
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
109 |
z = 2; |
16147 | 110 |
} |
111 |
print("this is ok 4"); |
|
112 |
} catch (e) { |
|
113 |
if ((e instanceof TypeError) !== true) { |
|
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
16151
diff
changeset
|
114 |
print(e); |
16147 | 115 |
} |
116 |
} |