test/script/basic/JDK-8019791.js

Wed, 18 Jun 2014 12:35:42 -0700

author
katleman
date
Wed, 18 Jun 2014 12:35:42 -0700
changeset 863
6e9c4e34bc61
parent 606
7cc5ff16380f
child 952
6d5471a497fb
child 962
ac62e33a99b0
permissions
-rw-r--r--

Added tag jdk8u20-b19 for changeset b047df215de4

sundar@403 1 /*
sundar@403 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
sundar@403 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@403 4 *
sundar@403 5 * This code is free software; you can redistribute it and/or modify it
sundar@403 6 * under the terms of the GNU General Public License version 2 only, as
sundar@403 7 * published by the Free Software Foundation.
sundar@403 8 *
sundar@403 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@403 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@403 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@403 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@403 13 * accompanied this code).
sundar@403 14 *
sundar@403 15 * You should have received a copy of the GNU General Public License version
sundar@403 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@403 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@403 18 *
sundar@403 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@403 20 * or visit www.oracle.com if you need additional information or have any
sundar@403 21 * questions.
sundar@403 22 */
sundar@403 23
sundar@403 24 /**
sundar@403 25 * JDK-8019791: ~ is a unary operator
sundar@403 26 *
sundar@403 27 * @test
sundar@403 28 * @run
sundar@403 29 */
sundar@403 30
sundar@403 31 // Used to crash instead of SyntaxError
sundar@403 32 try {
sundar@403 33 eval('"" ~ ""');
sundar@403 34 print("FAILED: SyntaxError expected for: \"\" ~ \"\"");
sundar@403 35 } catch (e) {
sundar@606 36 printError(e);
sundar@403 37 }
sundar@403 38
sundar@403 39 // Used to crash instead of SyntaxError
sundar@403 40 try {
sundar@403 41 eval("function() { if (1~0) return 0; return 1 }");
sundar@403 42 print("FAILED: SyntaxError expected for: if (1~0) ");
sundar@403 43 } catch (e) {
sundar@606 44 printError(e);
sundar@403 45 }
sundar@403 46
sundar@403 47 // The following are valid, but used to crash
sundar@403 48 Function("0 \n ~ 2 \n ~ 1")();
sundar@403 49
sundar@403 50 Function("~ ~ 0 \n ~ ~ 1")();

mercurial