Home | History | Annotate | Download | only in compiler

Lines Matching full:constructor

30 // Test inlining of constructor calls.
50 function TestInAllContexts(constructor) {
52 var obj = new constructor(a, b, counter);
56 if (!new constructor(a, b, counter)) {
62 new constructor(a, b, counter);
75 // Test constructor returning nothing in all contexts.
83 // Test constructor returning an object in all contexts.
93 // Test constructor returning a primitive value in all contexts.
102 // Test constructor called with too many arguments.
117 // Test constructor called with too few arguments.
133 // Test constructor that cannot be inlined.