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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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  * The depth of nested function calls reaches 32
     6  *
     7  * @path ch13/13.2/S13.2.1_A1_T1.js
     8  * @description Creating function calls 32 elements depth
     9  */
    11 (function(){
    12     (function(){
    13         (function(){
    14             (function(){
    15                 (function(){
    16                     (function(){
    17                         (function(){
    18                             (function(){
    19                                 (function(){
    20                                     (function(){
    21                                         (function(){
    22                                             (function(){
    23                                                 (function(){
    24                                                     (function(){
    25                                                         (function(){
    26                                                             (function(){
    27                                                                 (function(){
    28                                                                     (function(){
    29                                                                         (function(){
    30                                                                             (function(){
    31                                                                                 (function(){
    32                                                                                     (function(){
    33                                                                                         (function(){
    34                                                                                             (function(){
    35                                                                                                 (function(){
    36                                                                                                     (function(){
    37                                                                                                         (function(){
    38                                                                                                             (function(){
    39                                                                                                                 (function(){
    40                                                                                                                     (function(){
    41                                                                                                                         (function(){
    42                                                                                                                             (function(){})()
    43                                                                                                                         })()
    44                                                                                                                     })()
    45                                                                                                                 })()
    46                                                                                                             })()
    47                                                                                                         })()
    48                                                                                                     })()
    49                                                                                                 })()
    50                                                                                             })()
    51                                                                                         })()
    52                                                                                     })()
    53                                                                                 })()
    54                                                                             })()
    55                                                                         })()
    56                                                                     })()
    57                                                                 })()
    58                                                             })()
    59                                                         })()
    60                                                     })()
    61                                                 })()
    62                                             })()
    63                                         })()
    64                                     })()
    65                                 })()
    66                             })()
    67                         })()
    68                     })()
    69                 })()
    70             })()
    71         })()
    72     })()
    73 })()                            

mercurial