nashorn/test/script/basic/JDK-8029667.js
author attila
Wed, 26 Feb 2014 13:17:57 +0100
changeset 24719 f726e9d67629
parent 22377 d0c9a671c1fe
child 24778 2ff5d7041566
permissions -rw-r--r--
8035820: Optimistic recompilation Reviewed-by: hannesw, jlaskey, sundar Contributed-by: attila.szegedi@oracle.com, marcus.lagergren@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22377
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     1
/*
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     4
 * 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     7
 * published by the Free Software Foundation.
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     8
 * 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    13
 * accompanied this code).
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    14
 * 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    18
 * 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    21
 * questions.
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    22
 */
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    23
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    24
/**
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    25
 * JDK-8029667: Prototype linking is incorrect
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    26
 *
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    27
 * @test
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    28
 * @run
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    29
 */
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    30
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    31
function f(x) {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    32
  return (function inner() { 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    33
      var y; (function dummy() { return y })() // force own scope for the inner function
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    34
      with({}) { // 'with' block turns off fast scopes
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    35
          return x
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    36
      }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    37
  })();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    38
}
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    39
print(f(1));
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    40
print(f(2));
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    41
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    42
function g(x) { 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    43
  (function inner() { 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    44
      var y; (function dummy() { return y })() // force own scope for the inner function
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    45
      with({}) { // 'with' block turns off fast scopes
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    46
          // Test setter as well as getter
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    47
          x = x + 2;
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    48
      }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    49
  })();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    50
  print(x);
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    51
}
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    52
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    53
g(1);
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    54
g(2);
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    55
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    56
var withScopes = [{ func: function() { print("called 1");} }, { func: function() { print("called 2");} }];
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    57
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    58
for(var i in withScopes) {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    59
    with (withScopes[i]) {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    60
        var main = function() {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    61
            var frame; // <---- this local variable caused scope to be not set properly prior to fix
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    62
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    63
            function callFunc() {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    64
                frame = func();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    65
            }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    66
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    67
            callFunc();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    68
        }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    69
    }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    70
    main();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    71
}
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    72
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    73
for(var i in withScopes) {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    74
    with (withScopes[i]) {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    75
        var main = function() {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    76
            var frame; // <---- this local variable caused scope to be not set properly prior to fix
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    77
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    78
            function callFunc() {
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    79
                frame = func = i;
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    80
            }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    81
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    82
            callFunc();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    83
        }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    84
    }
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    85
    main();
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    86
} 
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    87
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    88
print(withScopes[0].func);
d0c9a671c1fe 8029667: Prototype linking is incorrect
hannesw
parents:
diff changeset
    89
print(withScopes[1].func);