nashorn/test/script/basic/JDK-8019947.js
author attila
Wed, 04 Jun 2014 13:08:57 +0200
changeset 24778 2ff5d7041566
parent 18851 bdb92c95f886
permissions -rw-r--r--
8044638: Tidy up Nashorn codebase for code standards Reviewed-by: lagergren, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18851
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     1
/*
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 18851
diff changeset
     4
 *
18851
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     7
 * published by the Free Software Foundation.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 18851
diff changeset
     8
 *
18851
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    13
 * accompanied this code).
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 18851
diff changeset
    14
 *
18851
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 18851
diff changeset
    18
 *
18851
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    21
 * questions.
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    22
 */
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    23
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    24
/**
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    25
 * JDK-8019947: inherited property invalidation does not work with two globals in same context
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    26
 *
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    27
 * @test
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    28
 * @option -scripting
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    29
 * @run
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    30
 */
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    31
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    32
function func(arr) {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    33
    try {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    34
       print(arr.toString());
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    35
    } catch (e) {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    36
       print(e.stack);
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    37
    }
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    38
}
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    39
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    40
var arr = ["hello", "world"]
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    41
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    42
func(arr);
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    43
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    44
var global = loadWithNewGlobal({
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    45
   name: "t",
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    46
   script: <<EOF
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    47
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    48
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    49
function func(arr) {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    50
   try {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    51
       print(arr.toString());
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    52
   } catch (e) {
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    53
       print(e.stack);
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    54
   }
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    55
}
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    56
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    57
var arr = [1, 2, 3];
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    58
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    59
func(arr);
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    60
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    61
delete Array.prototype.toString;
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    62
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    63
// Object.prototype.toString should be visible
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    64
// after Array.prototype.toString is deleted.
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    65
func(arr);
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    66
this;
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    67
EOF
bdb92c95f886 8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
diff changeset
    68
});