Searched refs:MirrorType (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/debug/ |
D | mirrors.js | 65 var MirrorType = { variable 183 mirror = new ObjectMirror(value, MirrorType.OBJECT_TYPE, opt_transient); 586 %_Call(ValueMirror, this, MirrorType.UNDEFINED_TYPE, UNDEFINED); 602 %_Call(ValueMirror, this, MirrorType.NULL_TYPE, null); 619 %_Call(ValueMirror, this, MirrorType.BOOLEAN_TYPE, value); 636 %_Call(ValueMirror, this, MirrorType.NUMBER_TYPE, value); 653 %_Call(ValueMirror, this, MirrorType.STRING_TYPE, value); 682 %_Call(ValueMirror, this, MirrorType.SYMBOL_TYPE, value); 706 type = type || MirrorType.OBJECT_TYPE; 886 %_Call(ObjectMirror, this, value, MirrorType.FUNCTION_TYPE); [all …]
|
D | debug.js | 24 var MirrorType; 31 MirrorType = from.MirrorType; 1974 if (value_description.type == MirrorType.BOOLEAN_TYPE) { 1976 } else if (value_description.type == MirrorType.NUMBER_TYPE) { 1978 } if (value_description.type == MirrorType.STRING_TYPE) { 1985 } else if (value_description.type == MirrorType.UNDEFINED_TYPE) { 1987 } else if (value_description.type == MirrorType.NULL_TYPE) {
|