2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
Function call cannot appear in the program before the FunctionExpression
|
|
|
|
appears
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 13_A17_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Trying to call a function before the FunctionExpression appears
|
|
|
|
and then using the FunctionExpression one more time
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
try{
|
|
|
|
var __result = __func();
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error("#1: var __result = __func() lead to throwing exception");
|
2011-09-07 08:35:18 +02:00
|
|
|
} catch(e) {
|
|
|
|
if ((e instanceof TypeError) !== true) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#1.2: func should throw a TypeError Actual: ' + (e));
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// now we reach the __func overwriting by new expression
|
|
|
|
var __func = function __func(){return "ONE";};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#2
|
|
|
|
var __result = __func();
|
|
|
|
if (__result !== "ONE") {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#2: __result === "ONE". Actual: __result ==='+__result);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
__func = function __func(){return "TWO";};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#3
|
|
|
|
var __result = __func();
|
|
|
|
if (__result !== "TWO") {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#3: __result === "TWO". Actual: __result ==='+__result);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|