Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Issue 1653053002: Devtools: parse variables scopes and sourcemap them (Closed)

Created:
4 years, 10 months ago by sergeyv
Modified:
4 years, 9 months ago
Reviewers:
dgozman, pfeldman
CC:
chromium-reviews, caseq+blink_chromium.org, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, apavlov+blink_chromium.org, devtools-reviews_chromium.org, blink-reviews, sergeyv+blink_chromium.org, kozyatinskiy+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Devtools: [Experiment] parse variables in scopes and sourcemap them BUG= Committed: https://crrev.com/e2152de29f6d5b846cd6c7cb3e0a864cfb7a1634 Cr-Commit-Position: refs/heads/master@{#378836}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Total comments: 26

Patch Set 8 : Address comments #

Patch Set 9 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+590 lines, -162 lines) Patch
M third_party/WebKit/LayoutTests/inspector/initial-modules-load-expected.txt View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -0 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html View 1 2 3 4 5 6 7 3 chunks +7 lines, -10 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables-expected.txt View 1 2 3 4 5 6 7 1 chunk +14 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-compressed.js View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-origin.js View 1 2 3 4 1 chunk +7 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable.js.map View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/BUILD.gn View 1 2 3 4 5 6 7 3 chunks +3 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/devtools.gyp View 1 2 3 4 5 6 7 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/devtools.gypi View 1 2 3 4 5 6 7 8 5 chunks +7 lines, -1 line 0 comments Download
A + third_party/WebKit/Source/devtools/front_end/es_tree/ESTreeWalker.js View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + third_party/WebKit/Source/devtools/front_end/es_tree/module.json View 1 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/inspector.json View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/main/Main.js View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/script_formatter_worker/ESTreeWalker.js View 1 1 chunk +0 lines, -127 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/script_formatter_worker/JavaScriptFormatter.js View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/script_formatter_worker/module.json View 1 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js View 1 2 3 4 5 6 7 8 3 chunks +19 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js View 1 3 chunks +15 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js View 1 2 5 chunks +7 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sources/ScopeChainSidebarPane.js View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
A third_party/WebKit/Source/devtools/front_end/sources/SourceMapNamesResolver.js View 1 2 3 4 5 6 7 1 chunk +365 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sources/module.json View 1 2 3 4 5 6 7 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/protocol.json View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js View 1 2 3 4 5 6 7 8 3 chunks +53 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js View 1 2 3 4 5 6 7 8 3 chunks +10 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp View 1 2 3 4 5 6 7 1 chunk +18 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp View 1 2 2 chunks +23 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js View 1 2 1 chunk +13 lines, -0 lines 0 comments Download

Messages

Total messages: 21 (10 generated)
sergeyv
please take a look!
4 years, 10 months ago (2016-02-20 05:07:14 UTC) #4
dgozman
https://codereview.chromium.org/1653053002/diff/120001/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html File third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html (right): https://codereview.chromium.org/1653053002/diff/120001/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html#newcode34 third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html:34: <input type='button' onclick='testFunction()' value='Test'/> Remove this? https://codereview.chromium.org/1653053002/diff/120001/third_party/WebKit/Source/devtools/front_end/bindings/SourceMapNamesResolver.js File third_party/WebKit/Source/devtools/front_end/bindings/SourceMapNamesResolver.js ...
4 years, 10 months ago (2016-02-22 17:24:57 UTC) #5
sergeyv
https://codereview.chromium.org/1653053002/diff/120001/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html File third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html (right): https://codereview.chromium.org/1653053002/diff/120001/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html#newcode34 third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html:34: <input type='button' onclick='testFunction()' value='Test'/> On 2016/02/22 17:24:56, dgozman wrote: ...
4 years, 10 months ago (2016-02-22 21:42:54 UTC) #6
dgozman
lgtm
4 years, 10 months ago (2016-02-23 01:00:26 UTC) #7
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1653053002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1653053002/140001
4 years, 9 months ago (2016-03-02 18:38:18 UTC) #9
sergeyv
4 years, 9 months ago (2016-03-02 18:39:42 UTC) #11
pfeldman
lgtm
4 years, 9 months ago (2016-03-02 18:40:39 UTC) #12
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/189228)
4 years, 9 months ago (2016-03-02 19:33:33 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1653053002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1653053002/160001
4 years, 9 months ago (2016-03-02 19:47:09 UTC) #17
commit-bot: I haz the power
Committed patchset #9 (id:160001)
4 years, 9 months ago (2016-03-02 21:25:40 UTC) #19
commit-bot: I haz the power
4 years, 9 months ago (2016-03-02 21:26:42 UTC) #21
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/e2152de29f6d5b846cd6c7cb3e0a864cfb7a1634
Cr-Commit-Position: refs/heads/master@{#378836}

Powered by Google App Engine
This is Rietveld 408576698