Home
last modified time | relevance | path

Searched refs:ValueMirror (Results 1 – 17 of 17) sorted by relevance

/external/v8/src/debug/
Dmirrors.js287 return this instanceof ValueMirror;
539 function ValueMirror(type, value, transient) { class
548 inherits(ValueMirror, Mirror);
560 ValueMirror.prototype.isPrimitive = function() { class
575 ValueMirror.prototype.value = function() {
586 %_Call(ValueMirror, this, MirrorType.UNDEFINED_TYPE, UNDEFINED);
588 inherits(UndefinedMirror, ValueMirror);
602 %_Call(ValueMirror, this, MirrorType.NULL_TYPE, null);
604 inherits(NullMirror, ValueMirror);
619 %_Call(ValueMirror, this, MirrorType.BOOLEAN_TYPE, value);
[all …]
Ddebug.js26 var ValueMirror = global.ValueMirror;
233 if (!(mirror instanceof ValueMirror) || !mirror.value_) {
/external/v8/test/mjsunit/es6/
Dmirror-collections.js14 assertTrue(mirror instanceof debug.ValueMirror);
32 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-symbols.js16 assertTrue(mirror instanceof debug.ValueMirror);
Dgenerators-mirror.js37 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-promises.js30 assertTrue(mirror instanceof debug.ValueMirror);
/external/v8/test/mjsunit/
Dmirror-boolean.js39 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-number.js39 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-date.js39 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-string.js41 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-error.js53 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-regexp.js63 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-function.js53 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-unresolved-function.js51 assertTrue(mirror instanceof debug.ValueMirror);
Dmirror-script.js40 assertFalse(mirror instanceof debug.ValueMirror);
Dmirror-array.js53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierachy');
Dmirror-object.js53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierarchy');