aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A17_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A17_T1.js')
-rw-r--r--test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A17_T1.js61
1 files changed, 61 insertions, 0 deletions
diff --git a/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A17_T1.js b/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A17_T1.js
new file mode 100644
index 000000000..bf9e509a0
--- /dev/null
+++ b/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A17_T1.js
@@ -0,0 +1,61 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+* @name: S13_A17_T1;
+* @section: 13;
+* @assertion: Function call cannot appear in the program before the FunctionExpression appears;
+* @description: Trying to call a function before the FunctionExpression appears;
+*/
+
+
+// Converted for Test262 from original Sputnik source
+
+ES5Harness.registerTest( {
+id: "S13.0_A17_T1",
+
+path: "13_Function_Definition\13.0_Chapter\S13.0_A17_T1.js",
+
+assertion: "Function call cannot appear in the program before the FunctionExpression appears",
+
+description: "Trying to call a function before the FunctionExpression appears",
+
+test: function testcase() {
+ //////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+try{
+ var __result = __func();
+ $FAIL("#1.1: var __result = __func() lead to throwing exception");
+} catch(e) {
+ if ((e instanceof TypeError) !== true) {
+ $ERROR('#1.2: func should throw a TypeError Actual: ' + (e));
+ }
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+var __func = function (){return "ONE";};
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#2
+var __result = __func();
+if (__result !== "ONE") {
+ $ERROR('#2: __result === "ONE". Actual: __result ==='+__result);
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+__func = function (){return "TWO";};
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#3
+var __result = __func();
+if (__result !== "TWO") {
+ $ERROR('#3: __result === "TWO". Actual: __result ==='+__result);
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+ }
+});
+