nashorn/test/script/basic/JDK-8025486.js
author hannesw
Thu, 26 Sep 2013 11:47:24 +0200
changeset 20226 2ff3f0a54812
child 24778 2ff5d7041566
permissions -rw-r--r--
8025486: RegExp constructor arguments are not evaluated in right order Reviewed-by: sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20226
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     1
/*
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     4
 * 
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     7
 * published by the Free Software Foundation.
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     8
 * 
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    13
 * accompanied this code).
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    14
 * 
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    18
 * 
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    21
 * questions.
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    22
 */
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    23
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    24
/**
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    25
 * JDK-8025486: RegExp constructor arguments are not evaluated in right order
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    26
 *
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    27
 * @test
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    28
 * @run
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    29
 */
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    30
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    31
new RegExp({
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    32
    toString: function() {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    33
        print("source");
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    34
        return "a";
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    35
    }
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    36
}, {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    37
    toString: function() {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    38
        print("flags");
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    39
        return "g";
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    40
    }
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    41
});
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    42
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    43
try {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    44
    new RegExp(/asdf/, {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    45
        toString: function() {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    46
            fail("toString should not be called");
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    47
        }
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    48
    });
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    49
    fail("expected TypeError");
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    50
} catch (e) {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    51
    if (!(e instanceof TypeError)) {
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    52
        fail("expected TypeError");
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    53
    }
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    54
    print(e);
2ff3f0a54812 8025486: RegExp constructor arguments are not evaluated in right order
hannesw
parents:
diff changeset
    55
}