Lines Matching refs:ObjectMirror
176 mirror = new ObjectMirror(value, MirrorType.OBJECT_TYPE, opt_transient);
346 return this instanceof ObjectMirror;
701 function ObjectMirror(value, type, transient) { class
705 inherits(ObjectMirror, ValueMirror);
708 ObjectMirror.prototype.className = function() { class
713 ObjectMirror.prototype.constructorFunction = function() {
718 ObjectMirror.prototype.prototypeObject = function() {
723 ObjectMirror.prototype.protoObject = function() {
728 ObjectMirror.prototype.hasNamedInterceptor = function() {
735 ObjectMirror.prototype.hasIndexedInterceptor = function() {
750 ObjectMirror.prototype.propertyNames = function() {
763 ObjectMirror.prototype.properties = function() {
779 ObjectMirror.prototype.internalProperties = function() {
780 return ObjectMirror.GetInternalProperties(this.value_);
784 ObjectMirror.prototype.property = function(name) {
802 ObjectMirror.prototype.lookupProperty = function(value) {
828 ObjectMirror.prototype.referencedBy = function(opt_max_objects) {
842 ObjectMirror.prototype.toText = function() {
865 ObjectMirror.GetInternalProperties = function(value) {
882 %_Call(ObjectMirror, this, value, MirrorType.FUNCTION_TYPE);
885 inherits(FunctionMirror, ObjectMirror);
1110 %_Call(ObjectMirror, this, value);
1112 inherits(ArrayMirror, ObjectMirror);
1147 %_Call(ObjectMirror, this, value);
1149 inherits(DateMirror, ObjectMirror);
1165 %_Call(ObjectMirror, this, value, MirrorType.REGEXP_TYPE);
1167 inherits(RegExpMirror, ObjectMirror);
1237 %_Call(ObjectMirror, this, value, MirrorType.ERROR_TYPE);
1239 inherits(ErrorMirror, ObjectMirror);
1270 %_Call(ObjectMirror, this, value, MirrorType.PROMISE_TYPE);
1272 inherits(PromiseMirror, ObjectMirror);
1299 %_Call(ObjectMirror, this, value, MirrorType.MAP_TYPE);
1301 inherits(MapMirror, ObjectMirror);
1339 %_Call(ObjectMirror, this, value, MirrorType.SET_TYPE);
1341 inherits(SetMirror, ObjectMirror);
1373 %_Call(ObjectMirror, this, value, MirrorType.ITERATOR_TYPE);
1375 inherits(IteratorMirror, ObjectMirror);
1405 %_Call(ObjectMirror, this, value, MirrorType.GENERATOR_TYPE);
1407 inherits(GeneratorMirror, ObjectMirror);
3066 "ObjectMirror", ObjectMirror,