js/src/tests/test262/ch13/13.2/S13.2.1_A7_T2.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

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_T2.js
    10  * @description Returning null. Declaring a function with "var __func = function ()"
    11  */
    13 var __func = function (){
    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 //////////////////////////////////////////////////////////////////////////////

mercurial