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.
|
|
4 |
*
|
|
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.
|
|
8 |
*
|
|
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).
|
|
14 |
*
|
|
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.
|
|
18 |
*
|
|
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 |
* NASHORN-703
|
|
26 |
*
|
|
27 |
* Self modifying assignments and ++/-- operators had two issues
|
|
28 |
* 1) the base was loaded twice
|
|
29 |
* 2) if the base was anything but an IdentNode, AccessNode or IndexNode and in the scope, it would
|
|
30 |
* only be evaluated once, leading to bytecode stack underflow
|
|
31 |
*
|
|
32 |
* This file is split into two tests as the presence of eval affects the whole script
|
|
33 |
*
|
|
34 |
* @test
|
|
35 |
* @run
|
|
36 |
*/
|
|
37 |
|
|
38 |
function template() {
|
|
39 |
this.count = 17;
|
|
40 |
}
|
|
41 |
|
|
42 |
//self assignment to accessnode in scope
|
|
43 |
function test1() {
|
|
44 |
a.count++;
|
|
45 |
}
|
|
46 |
|
|
47 |
function test2() {
|
|
48 |
a2[0].count++;
|
|
49 |
}
|
|
50 |
|
|
51 |
function test3() {
|
|
52 |
a3[0]++;
|
|
53 |
}
|
|
54 |
|
|
55 |
function test4() {
|
|
56 |
a4 *= 17;
|
|
57 |
}
|
|
58 |
|
|
59 |
function test5() {
|
|
60 |
a5.count *= 17;
|
|
61 |
}
|
|
62 |
|
|
63 |
function test6() {
|
|
64 |
a6[0].count *= 17;
|
|
65 |
}
|
|
66 |
|
|
67 |
function test7() {
|
|
68 |
a7[0] *= 17;
|
|
69 |
}
|
|
70 |
|
|
71 |
function tpl() {
|
|
72 |
return new template();
|
|
73 |
}
|
|
74 |
|
|
75 |
function count() {
|
|
76 |
tpl().count++;
|
|
77 |
}
|
|
78 |
|
|
79 |
var a = new template();
|
|
80 |
test1();
|
|
81 |
print(a.count);
|
|
82 |
|
|
83 |
var a2 = [new template()];
|
|
84 |
test2();
|
|
85 |
print(a2[0].count);
|
|
86 |
|
|
87 |
var a3 = [1];
|
|
88 |
test3();
|
|
89 |
print(a3);
|
|
90 |
|
|
91 |
var a4 = 4711;
|
|
92 |
test4();
|
|
93 |
print(a4);
|
|
94 |
|
|
95 |
var a5 = new template();
|
|
96 |
test5();
|
|
97 |
print(a5.count);
|
|
98 |
|
|
99 |
var a6 = [new template()];
|
|
100 |
test6();
|
|
101 |
print(a6[0].count);
|
|
102 |
|
|
103 |
var a7 = [1];
|
|
104 |
test7();
|
|
105 |
print(a7[0]);
|
|
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
|
111 |
|
|
112 |
|
|
113 |
|