Searched refs:scopeObject (Results 1 – 8 of 8) sorted by relevance
/external/v8/test/mjsunit/bugs/harmony/ |
D | debug-blockscopes.js | 92 assertPropertiesEqual(this, scope.scopeObject().value()); 128 var property_mirror = scope.scopeObject().property(p); 143 var scope_size = scope.scopeObject().properties().length; 144 if (!scope.scopeObject().property('arguments').isUndefined()) { 148 if (!scope.scopeObject().property('.catch-var').isUndefined()) { 152 if (!scope.scopeObject().property('').isUndefined()) { 156 if (!scope.scopeObject().property('.block').isUndefined()) { 162 var names = scope.scopeObject().propertyNames();
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | DebuggerScript.js | 220 var scopeObjectMirror = scopeMirror.scopeObject(); 222 var scopeObject; 228 scopeObject = {}; 231 scopeObject.__proto__ = null; 237 scopeObject[name] = properties[j].value_; 243 scopeObject = scopeMirror.details_.object(); 248 scopeChain.push(scopeObject);
|
/external/v8/test/mjsunit/harmony/ |
D | debug-blockscopes.js | 95 assertPropertiesEqual(global_object, scope.scopeObject().value()); 131 var property_mirror = scope.scopeObject().property(p); 146 var scope_size = scope.scopeObject().properties().length; 147 if (!scope.scopeObject().property('arguments').isUndefined()) { 151 if (!scope.scopeObject().property('.catch-var').isUndefined()) { 155 if (!scope.scopeObject().property('').isUndefined()) { 159 if (!scope.scopeObject().property('.block').isUndefined()) { 165 var names = scope.scopeObject().propertyNames();
|
/external/v8/test/mjsunit/ |
D | debug-scopes.js | 91 assertPropertiesEqual(this, scope.scopeObject().value()); 128 var property_mirror = scope.scopeObject().property(p); 140 var scope_size = scope.scopeObject().properties().length; 141 if (!scope.scopeObject().property('arguments').isUndefined()) { 145 if (!scope.scopeObject().property('.catch-var').isUndefined()) { 149 if (!scope.scopeObject().property('').isUndefined()) { 155 var names = scope.scopeObject().propertyNames(); 413 …assertEquals(exec_state.frame().scope(0).scopeObject(), exec_state.frame().scope(1).scopeObject()); 414 assertEquals(with_object, exec_state.frame().scope(1).scopeObject().value()); 428 …assertEquals(exec_state.frame().scope(0).scopeObject(), exec_state.frame().scope(1).scopeObject()); [all …]
|
D | debug-evaluate-locals-optimized.js | 80 assertEquals(expected_locals[name], frame.scope(0).scopeObject().value()[name]); 86 assertEquals(arg_value, frame.scope(0).scopeObject().value()[arg_name]);
|
D | debug-evaluate-locals-optimized-double.js | 90 assertEquals(expected_locals[name], frame.scope(0).scopeObject().value()[name]); 96 assertEquals(arg_value, frame.scope(0).scopeObject().value()[arg_name]);
|
D | debug-stepout-scope.js | 43 scope.scopeObject();
|
/external/v8/src/ |
D | mirror-debugger.js | 1790 ScopeMirror.prototype.scopeObject = function() { method in ScopeMirror 2411 this.serializeValue(mirror.scopeObject()) : 2412 this.serializeReference(mirror.scopeObject());
|