~ubuntu-branches/ubuntu/vivid/mozjs24/vivid

« back to all changes in this revision

Viewing changes to js/src/tests/test262/ch13/13.2/S13.2.1_A1_T1.js

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2014-02-11 21:55:34 UTC
  • Revision ID: package-import@ubuntu.com-20140211215534-m1zyq5aj59md3y07
Tags: upstream-24.2.0
ImportĀ upstreamĀ versionĀ 24.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2009 the Sputnik authors.  All rights reserved.
 
2
// This code is governed by the BSD license found in the LICENSE file.
 
3
 
 
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
 */
 
10
 
 
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
})()                            
 
74