Lines Matching refs:function
33 function f0() { return x; }
38 function f1(x) { return x; }
43 function f2() { var x = 2; return x; }
47 // Context-allocated locals. Local function forces x into f3's context.
48 function f3(x) {
49 function g() { return x; }
54 // Local function reads x from an outer context.
55 function f4(x) {
56 function g() { return x; }
63 function f5(x) {
72 function f6(arguments) { return arguments; }