Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * When the [[Call]] property for a Function object F is called, the following steps are taken:
6 * 2. Evaluate F's FunctionBody;
7 * if Result.type is returned then Result.value is returned too
8 *
9 * @path ch13/13.2/S13.2.1_A7_T1.js
10 * @description Returning null. Declaring a function with "function __func()"
11 */
13 function __func(){
14 var x = null;
15 return x;
16 }
18 //////////////////////////////////////////////////////////////////////////////
19 //CHECK#1
20 try{
21 var x=__func();
22 } catch(e){
23 $ERROR('#1: var x=__func() does not lead to throwing exception. Actual: exception is '+e);
24 }
25 //
26 //////////////////////////////////////////////////////////////////////////////