Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:function

32 function install(name, value) {
39 install('return_this', function() { return this; });
40 install('return_this_strict', function () { 'use strict'; return this; });
88 install('f', function() { return this.name; });
89 install('g', function() { "use strict"; return this ? this.name : "u"; });
93 (function(){return f();})() + \
94 (function(){return (1,f)();})() + \
95 (function(){'use strict'; return f();})() + \
96 (function(){'use strict'; return (1,f)();})() + \
97 (function(){return g();})() + \
98 (function(){return (1,g)();})() + \
99 (function(){'use strict'; return g();})() + \
100 (function(){'use strict'; return (1,g)();})(); \