aboutsummaryrefslogtreecommitdiff
path: root/test/script/basic/NASHORN-515.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/script/basic/NASHORN-515.js')
-rw-r--r--test/script/basic/NASHORN-515.js86
1 files changed, 43 insertions, 43 deletions
diff --git a/test/script/basic/NASHORN-515.js b/test/script/basic/NASHORN-515.js
index 198be1f3..09a6b7a7 100644
--- a/test/script/basic/NASHORN-515.js
+++ b/test/script/basic/NASHORN-515.js
@@ -1,21 +1,21 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
- *
+ *
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
- *
+ *
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
+ *
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
@@ -30,17 +30,17 @@
function a() {
var x = (3.14-2.14);
-
+
switch (x) {
case 1:
- print("--1");
- break;
+ print("--1");
+ break;
case 2:
- print("--2");
- break;
+ print("--2");
+ break;
default:
- print("default");
- break;
+ print("default");
+ break;
}
}
@@ -50,11 +50,11 @@ function b() {
switch (index) {
case 0x00:
case 0x01:
- print("one zero");
- break;
+ print("one zero");
+ break;
default:
- print("default");
- break;
+ print("default");
+ break;
}
}
@@ -64,76 +64,76 @@ function c() {
switch (index) {
case 0x00:
case 0x01:
- print("one zero");
- break;
+ print("one zero");
+ break;
default:
- print("default");
+ print("default");
}
--index;
}
function d() {
var x = (3.14-1.14);
-
+
switch(x) {
case 1:
- print("--1"); break;
+ print("--1"); break;
case 2:
- print("--2"); break;
+ print("--2"); break;
case 3:
- print("--3"); break;
+ print("--3"); break;
case 4:
- print("--4"); break;
+ print("--4"); break;
default:
- print("default");
+ print("default");
}
}
function e() {
var y = 2147483647;
-
+
switch(y) {
case -2147483648:
- print("MIN_INT"); break;
+ print("MIN_INT"); break;
case -2147483647:
- print("MIN_INT+1"); break;
+ print("MIN_INT+1"); break;
case 2147483647:
- print("MAX_INT"); break;
+ print("MAX_INT"); break;
case 1:
- print("--1"); break;
+ print("--1"); break;
case 2:
- print("--2"); break;
+ print("--2"); break;
case 3:
- print("--3"); break;
+ print("--3"); break;
case 4:
- print("--4"); break;
+ print("--4"); break;
default:
- print("default");
+ print("default");
}
}
function f() {
var z = 2;
-
+
switch(z) {
case -2147483648:
- print("MIN_INT"); break;
+ print("MIN_INT"); break;
case -2147483647:
- print("MIN_INT+1"); break;
+ print("MIN_INT+1"); break;
case 2147483647:
- print("MAX_INT"); break;
+ print("MAX_INT"); break;
case 1:
- print("--1"); break;
+ print("--1"); break;
case 2:
- print("--2 first"); break;
+ print("--2 first"); break;
case 2:
- print("--2 second"); break;
+ print("--2 second"); break;
case 3:
- print("--3"); break;
+ print("--3"); break;
case 4:
- print("--4"); break;
+ print("--4"); break;
default:
- print("default");
+ print("default");
}
}