summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js
Commit message (Collapse)AuthorAgeFilesLines
* [DevTools] Debugger::currentCallFrames returns array instead linked listkozyatinskiy2016-03-261-36/+8
| | | | | | | | | | | | We can return array instead linked list since V8JavaScriptCallFrame wrapper was removed. Method callFrameByIndex was removed because we can use currentCallFrames instead: cached when DevTools is paused and with getter when we check stack trace for DOM breakpoint. BUG=595206 R=dgozman@chromium.org Review URL: https://codereview.chromium.org/1838683002 Cr-Commit-Position: refs/heads/master@{#383448}
* [DevTools] Add DebuggerScript.js compilation to compile_frontend.pykozyatinskiy2016-03-251-29/+167
| | | | | | | | | | Added debugger_script_externs.js with V8 types and output DebuggerScript types. R=dgozman@chromium.org Review URL: https://codereview.chromium.org/1833893002 Cr-Commit-Position: refs/heads/master@{#383411}
* [DevTools] Remove promise inspector experimentkozyatinskiy2016-03-251-9/+0
| | | | | | | | | | | We decided to remove this experiment because it doesn't really help in most scenarios. We should instead polish async stacks and finish async stepping to make debugging of promises and any other async code easy. BUG=526811,348919,587850 R=dgozman@chromium.org,pfeldman@chromium.org Review URL: https://codereview.chromium.org/1827993002 Cr-Commit-Position: refs/heads/master@{#383328}
* [DevTools] Remove obsolete functions from DebuggerScriptkozyatinskiy2016-03-251-43/+6
| | | | | | | | | | | setFunctionVariableName protocol call was removed during removing this feature from DevTools. Other functions are related to removed script preprocessor. R=dgozman@chromium.org Review URL: https://codereview.chromium.org/1830113005 Cr-Commit-Position: refs/heads/master@{#383229}
* [DevTools] Move wrapCallFrames from InjectedScriptSource.js to nativekozyatinskiy2016-03-231-84/+43
| | | | | | | | | BUG=595206 R=dgozman@chromium.org,pfeldman@chromium.org Review URL: https://codereview.chromium.org/1826623002 Cr-Commit-Position: refs/heads/master@{#382922}
* [DevTools] Removed obsolote NoScopes suffixkozyatinskiy2016-03-221-1/+1
| | | | | | | | | BUG=595206 R=dgozman@chromium.org Review URL: https://codereview.chromium.org/1822053003 Cr-Commit-Position: refs/heads/master@{#382666}
* [DevTools] Move getFunctionDetails to nativekozyatinskiy2016-03-191-3/+12
| | | | | | | | | BUG=595206 R=dgozman@chromium.org Review URL: https://codereview.chromium.org/1815753002 Cr-Commit-Position: refs/heads/master@{#382180}
* [DevTools] Move evaluateOnCallFrame to nativekozyatinskiy2016-03-171-2/+2
| | | | | | | | | | | | | | Method evaluateOnCallFrame was moved to V8DebuggerAgentImpl. While evaluatiom on call frame for command line API support, method based on V8WindowCustom binding is used instead existing scope_extension argument. In consequent callFrame was removed from CommandLineLineAPI constructor. Introduced InjectScopeExtensionByName helper class. BUG=595206 R=dgozman@chromium.org TBR=pfeldman@chromium.org Review URL: https://codereview.chromium.org/1811853002 Cr-Commit-Position: refs/heads/master@{#381834}
* DevTools: make DebuggerScript compatible with v8 5.0.pfeldman2016-03-041-5/+5
| | | | | | Review URL: https://codereview.chromium.org/1768513002 Cr-Commit-Position: refs/heads/master@{#379338}
* Devtools: Use Runtime.StackTrace instead of Debugger.StackTrace in asyncssergeyv2016-03-031-9/+4
| | | | | | | | BUG=590363 Review URL: https://codereview.chromium.org/1755603003 Cr-Commit-Position: refs/heads/master@{#378918}
* Devtools: [Experiment] parse variables in scopes and sourcemap themsergeyv2016-03-021-1/+53
| | | | | | | | BUG= Review URL: https://codereview.chromium.org/1653053002 Cr-Commit-Position: refs/heads/master@{#378836}
* Devtools: remove async scopessergeyv2016-03-021-11/+5
| | | | | | | | BUG=590363 Review URL: https://codereview.chromium.org/1740973004 Cr-Commit-Position: refs/heads/master@{#378625}
* DevTools: move inspector/v8 to platform/v8_inspector.pfeldman2016-02-131-0/+617
BUG=580337 NOTRY=true Review URL: https://codereview.chromium.org/1693743002 Cr-Commit-Position: refs/heads/master@{#375297}