Lines Matching refs:inner
12 function test(outer, inner, check) { argument
27 function inner(x) { function in UndefinedSloppy
33 global.sloppy = inner;
34 test(outer, inner, check);
45 function inner(x) { function in UndefinedStrict
52 global.strict = inner;
53 test(outer, inner, check);
64 function inner(x) { function in NumberSloppy
70 Number.prototype.sloppy = inner;
71 test(outer, inner, check);
82 function inner(x) { function in NumberStrict
89 Number.prototype.strict = inner;
90 test(outer, inner, check);
101 function inner(x) { function in StringSloppy
107 String.prototype.sloppy = inner;
108 test(outer, inner, check);
119 function inner(x) { function in StringStrict
126 String.prototype.strict = inner;
127 test(outer, inner, check);