repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2007-03-07 Chris Toshok <toshok@ximian.com>
[mcs.git]
/
jtests
/
func-nested.js
blob
562e3b482f1d97d84745539f61a218339e14aeff
1
var global;
2
3
function f (i, j)
4
{
5
var x = 1, y = 2, z;
6
z = x + y;
7
8
function g (k, l, m)
9
{
10
var z;
11
z = 1;
12
13
function h ()
14
{
15
var w;
16
w + 45;
17
}
18
}
19
}