Home | History | Annotate | Download | only in regress

Lines Matching refs:function

28 var o = [ function f0() { throw new Error(); },
29 function f1() { o[0](); },
30 function f2() { o[1](); },
31 function f3() { o[2](); } ];
33 Error.prepareStackTrace = function(error, frames) {
59 var o = [ function f0() { throw new Error(); },
60 function f1() { o[0](); },
61 function f2() { "use strict"; o[1](); },
62 function f3() { o[2](); } ];
64 Error.prepareStackTrace = function(error, frames) {
74 // The rest are poisoned by the first strict mode function.
79 // Function name remains accessible.
95 var o = [ function f0() { "use strict"; throw new Error(); },
96 function f1() { o[0](); },
97 function f2() { o[1](); },
98 function f3() { o[2](); } ];
100 Error.prepareStackTrace = function(error, frames) {
105 // The rest are poisoned by the first strict mode function.
108 if (i < frames.length - 1) { // Function name remains accessible.