Searched refs:constructorFunction (Results 1 – 6 of 6) sorted by relevance
/external/v8/test/mjsunit/ |
D | mirror-array.js | 62 …assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror, 'Unexpected mirror hierachy… 63 …assertEquals('Array', mirror.constructorFunction().name(), 'Unexpected constructor function name'); 79 …assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected … 80 …assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected construct… 81 …assertEquals('Array', refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor …
|
D | mirror-unresolved-function.js | 64 assertEquals('undefined', mirror.constructorFunction().type()); 72 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected c… 73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected construct…
|
D | mirror-function.js | 65 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror); 76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type); 77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
|
D | mirror-object.js | 61 …assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror, 'Unexpected mirror hierarch… 62 …assertEquals(ctor_name, mirror.constructorFunction().name(), 'Unexpected constructor function name… 102 …assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected … 103 …assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected construct… 104 …assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructo…
|
/external/v8/test/mjsunit/es6/ |
D | mirror-promises.js | 49 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type); 50 assertEquals('Promise', refs.lookup(fromJSON.constructorFunction.ref).name);
|
/external/v8/src/debug/ |
D | mirrors.js | 717 ObjectMirror.prototype.constructorFunction = function() { method in ObjectMirror 848 var ctor = this.constructorFunction(); 1063 UnresolvedFunctionMirror.prototype.constructorFunction = function() { method in UnresolvedFunctionMirror 2741 content.constructorFunction = 2742 this.serializeReference(mirror.constructorFunction());
|