test/script/basic/NASHORN-703.js

Mon, 01 Jul 2013 23:36:40 +0530

author
sundar
date
Mon, 01 Jul 2013 23:36:40 +0530
changeset 391
9165138b427c
parent 7
5a1b0714df0e
child 952
6d5471a497fb
child 962
ac62e33a99b0
permissions
-rw-r--r--

8019508: Comma handling in object literal parsing is wrong
Reviewed-by: hannesw

     1 /*
     2  * Copyright (c) 2010, 2013, 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  */
    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  */
    38 function template() {
    39     this.count = 17;
    40 }
    42 //self assignment to accessnode in scope
    43 function test1() {
    44     a.count++;
    45 }
    47 function test2() {
    48     a2[0].count++;
    49 }
    51 function test3() {
    52     a3[0]++;
    53 }
    55 function test4() {
    56     a4 *= 17;
    57 }
    59 function test5() {
    60     a5.count *= 17;
    61 }
    63 function test6() {
    64     a6[0].count *= 17;
    65 }
    67 function test7() {
    68     a7[0] *= 17;
    69 }
    71 function tpl() {
    72     return new template();
    73 }
    75 function count() {
    76     tpl().count++;
    77 }
    79 var a = new template();
    80 test1();
    81 print(a.count);
    83 var a2 = [new template()];
    84 test2();
    85 print(a2[0].count);
    87 var a3 = [1];
    88 test3();
    89 print(a3);
    91 var a4 = 4711;
    92 test4();
    93 print(a4);
    95 var a5 = new template();
    96 test5();
    97 print(a5.count);
    99 var a6 = [new template()];
   100 test6();
   101 print(a6[0].count);
   103 var a7 = [1];
   104 test7();
   105 print(a7[0]);

mercurial