Lines Matching refs:ValueMirror
287 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);
621 inherits(BooleanMirror, ValueMirror);
636 %_Call(ValueMirror, this, MirrorType.NUMBER_TYPE, value);
638 inherits(NumberMirror, ValueMirror);
653 %_Call(ValueMirror, this, MirrorType.STRING_TYPE, value);
655 inherits(StringMirror, ValueMirror);
682 %_Call(ValueMirror, this, MirrorType.SYMBOL_TYPE, value);
684 inherits(SymbolMirror, ValueMirror);
707 %_Call(ValueMirror, this, type, value, transient);
709 inherits(ObjectMirror, ValueMirror);
1050 %_Call(ValueMirror, this, MirrorType.FUNCTION_TYPE, value);
3017 "ValueMirror", ValueMirror,