NASHORN-703.js revision 2:da1e581c933b
1/*
2 * Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
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
38function template() {
39    this.count = 17;
40}
41
42//self assignment to accessnode in scope
43function test1() {
44    a.count++;
45}
46
47function test2() {
48    a2[0].count++;
49}
50
51function test3() {
52    a3[0]++;
53}
54
55function test4() {
56    a4 *= 17;
57}
58
59function test5() {
60    a5.count *= 17;
61}
62
63function test6() {
64    a6[0].count *= 17;
65}
66
67function test7() {
68    a7[0] *= 17;
69}
70
71function tpl() {
72    return new template();
73}
74
75function count() {
76    tpl().count++;
77}
78
79var a = new template();
80test1();
81print(a.count);
82
83var a2 = [new template()];
84test2();
85print(a2[0].count);
86
87var a3 = [1];
88test3();
89print(a3);
90
91var a4 = 4711;
92test4();
93print(a4);
94
95var a5 = new template();
96test5();
97print(a5.count);
98
99var a6 = [new template()];
100test6();
101print(a6[0].count);
102
103var a7 = [1];
104test7();
105print(a7[0]);
106
107
108
109
110
111
112
113
114