Home
last modified time | relevance | path

Searched refs:scopeObject (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/mjsunit/bugs/harmony/
Ddebug-blockscopes.js92 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/
DDebuggerScript.js220 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/
Ddebug-blockscopes.js95 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/
Ddebug-scopes.js91 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 …]
Ddebug-evaluate-locals-optimized.js80 assertEquals(expected_locals[name], frame.scope(0).scopeObject().value()[name]);
86 assertEquals(arg_value, frame.scope(0).scopeObject().value()[arg_name]);
Ddebug-evaluate-locals-optimized-double.js90 assertEquals(expected_locals[name], frame.scope(0).scopeObject().value()[name]);
96 assertEquals(arg_value, frame.scope(0).scopeObject().value()[arg_name]);
Ddebug-stepout-scope.js43 scope.scopeObject();
/external/v8/src/
Dmirror-debugger.js1790 ScopeMirror.prototype.scopeObject = function() { method in ScopeMirror
2411 this.serializeValue(mirror.scopeObject()) :
2412 this.serializeReference(mirror.scopeObject());