Home
last modified time | relevance | path

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

/external/v8/src/debug/
Dmirrors.js283 return this instanceof ValueMirror;
535 function ValueMirror(type, value, transient) { class
544 inherits(ValueMirror, Mirror);
556 ValueMirror.prototype.isPrimitive = function() { class
571 ValueMirror.prototype.value = function() {
582 %_Call(ValueMirror, this, MirrorType.UNDEFINED_TYPE, UNDEFINED);
584 inherits(UndefinedMirror, ValueMirror);
598 %_Call(ValueMirror, this, MirrorType.NULL_TYPE, null);
600 inherits(NullMirror, ValueMirror);
615 %_Call(ValueMirror, this, MirrorType.BOOLEAN_TYPE, value);
[all …]
Ddebug.js24 var ValueMirror = global.ValueMirror;
212 if (!(mirror instanceof ValueMirror) || !mirror.value_) {