summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/S15.3.2.1_A2_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/S15.3.2.1_A2_T6.js')
-rw-r--r--test/built-ins/Function/S15.3.2.1_A2_T6.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/test/built-ins/Function/S15.3.2.1_A2_T6.js b/test/built-ins/Function/S15.3.2.1_A2_T6.js
index 15fe4beb5..0d658808d 100644
--- a/test/built-ins/Function/S15.3.2.1_A2_T6.js
+++ b/test/built-ins/Function/S15.3.2.1_A2_T6.js
@@ -11,23 +11,27 @@ description: >
various results and a concotenation of strings
---*/
-var i=0;
+var i = 0;
-var p={toString:function(){return "arg"+(++i)}};
+var p = {
+ toString: function() {
+ return "arg" + (++i)
+ }
+};
//CHECK#1
try {
- var f = Function(p+","+p+","+p, "return arg1+arg2+arg3;");
+ var f = Function(p + "," + p + "," + p, "return arg1+arg2+arg3;");
} catch (e) {
$ERROR('#1: test failed');
}
//CHECK#2
-if (!(f instanceof Function)){
+if (!(f instanceof Function)) {
$ERROR('#2: It is permissible but not necessary to have one argument for each formal parameter to be specified');
}
//CHECK#3
-if (f("",1,p) !== "1arg4") {
+if (f("", 1, p) !== "1arg4") {
$ERROR('#3: It is permissible but not necessary to have one argument for each formal parameter to be specified');
}