Searched refs:constructedBy (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/v8/test/mjsunit/ |
D | debug-constructed-by.js | 39 assertEquals(0, ctor.constructedBy().length); 40 assertEquals(0, ctor.constructedBy(0).length); 41 assertEquals(0, ctor.constructedBy(1).length); 42 assertEquals(0, ctor.constructedBy(10).length); 46 assertEquals(1, ctor.constructedBy().length); 47 assertEquals(1, ctor.constructedBy(0).length); 48 assertEquals(1, ctor.constructedBy(1).length); 49 assertEquals(1, ctor.constructedBy(10).length); 57 assertEquals(11, ctor.constructedBy().length); 58 assertEquals(11, ctor.constructedBy(0).length); [all …]
|
/external/chromium_org/v8/src/ |
D | mirror-debugger.js | 985 FunctionMirror.prototype.constructedBy = function(opt_max_instances) { method in FunctionMirror
|
D | debug-debugger.js | 2156 response.body = mirror.constructedBy();
|