Searched refs:scopeChain (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
D | ScopeChainSidebarPane.js | 68 var scopeChain = callFrame.scopeChain; 69 for (var i = 0; i < scopeChain.length; ++i) { 70 var scope = scopeChain[i];
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScriptSource.js | 472 details.scopeChain = scopes; 693 …, objectGroup, isEvalOnCallFrame, injectCommandLineAPI, returnByValue, generatePreview, scopeChain) argument 695 …valFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain); 732 …evalFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain) argument 739 …var injectScopeChain = scopeChain && scopeChain.length && !("__scopeChainForEval" in inspectedWind… 750 … InjectedScriptHost.setNonEnumProperty(inspectedWindow, "__scopeChainForEval", scopeChain); 751 for (var i = 0; i < scopeChain.length; ++i) { 812 …n, objectGroup, false, injectCommandLineAPI, returnByValue, generatePreview, callFrame.scopeChain); 1386 this.scopeChain = this._wrapScopeChain(callFrame); 1399 var scopeChain = callFrame.scopeChain; [all …]
|
D | JavaScriptCallFrame.cpp | 112 v8::Handle<v8::Value> JavaScriptCallFrame::scopeChain() const in scopeChain() function in blink::JavaScriptCallFrame 116 v8::Handle<v8::Array> scopeChain = v8::Handle<v8::Array>::Cast(func->Call(callFrame, 0, 0)); in scopeChain() local 117 v8::Handle<v8::Array> result = v8::Array::New(m_isolate, scopeChain->Length()); in scopeChain() 118 for (uint32_t i = 0; i < scopeChain->Length(); i++) in scopeChain() 119 result->Set(i, scopeChain->Get(i)); in scopeChain()
|
D | JavaScriptCallFrame.h | 64 v8::Handle<v8::Value> scopeChain() const;
|
D | JavaScriptCallFrame.idl | 49 [Custom=Getter] readonly attribute object scopeChain;
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | DebuggerScript.js | 377 var scopeChain; 383 if (!scopeChain) { 384 scopeChain = []; 386 scopeChain.push(DebuggerScript._buildScopeObject(scopeTypes[i], scopeObjects[i])); 389 return scopeChain;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | DebuggerModel.js | 645 for (var i = 0; i < selectedCallFrame.scopeChain.length; ++i) { 646 var scope = selectedCallFrame.scopeChain[i]; 697 …, sourceURL: sourceURL, functionName: response.functionName, scopeChain: response.scopeChain || nu… property 945 get scopeChain() getter in WebInspector.DebuggerModel.CallFrame 947 return this._payload.scopeChain;
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
D | V8JavaScriptCallFrameCustom.cpp | 54 v8SetReturnValue(info, impl->scopeChain()); in scopeChainAttributeGetterCustom()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
D | ObjectPropertiesSection.js | 647 var scopeChain = response.scopeChain || []; 648 for (var i = 0; i < scopeChain.length; ++i) { 649 var scope = scopeChain[i];
|