Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:apply

102 // Test step into function apply from a function without local variables.
105 g.apply(null, [3]);
109 // Test step into function apply from a function with some local variables.
115 g.apply(null, [3, 4]);
118 // Test step into function apply which is a part of an expression.
122 var r = 10 + alias.apply(null, [3, 'unused arg']);
128 // Test step into function apply from a function with some local variables.
132 alias.apply(null, [3]);
145 // Test step into apply of bound function.
149 bound.apply(null, [3]);