Lines Matching refs:function
28 // We intend that the function declaration for g inside catch is hoisted to
29 // function f's scope. Invoke it before try/catch, in the try block, in the
34 function f() {
35 var x = 'function';
36 assertEquals('function', g());
38 assertEquals('function', g());
41 function g() { return x; }
42 assertEquals('function', g());
44 assertEquals('function', g());
48 assertEquals('function', f()());