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

Issue 272613002: DevTools: implemented scriptFailedToParse protocol event (Closed)

Created:
6 years, 7 months ago by kozyatinskiy1
Modified:
6 years, 5 months ago
Reviewers:
vsevik, aandrey, pfeldman
CC:
blink-reviews, apavlov+blink_chromium.org, adamk+blink_chromium.org, aandrey+blink_chromium.org, caseq+blink_chromium.org, arv+blink, malch+blink_chromium.org, yurys+blink_chromium.org, abarth-chromium, marja+watch_chromium.org, blink-reviews-bindings_chromium.org, devtools-reviews_chromium.org, loislo+blink_chromium.org, sof, lushnikov+blink_chromium.org, eustas+blink_chromium.org, paulirish+reviews_chromium.org, haraken, Nate Chapin, jsbell+bindings_chromium.org, alph+blink_chromium.org, kouhei+bindings_chromium.org, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, Inactive, watchdog-blink-watchlist_google.com
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Implemented scriptFailedToParse protocol event. Added test. Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=178062

Patch Set 1 #

Total comments: 6

Patch Set 2 : #

Total comments: 2

Patch Set 3 : #

Patch Set 4 : #

Total comments: 6

Patch Set 5 : #

Total comments: 2

Patch Set 6 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+105 lines, -38 lines) Patch
A LayoutTests/inspector/sources/debugger/resources/script-failed-to-parse.js View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A LayoutTests/inspector/sources/debugger/script-failed-to-parse.html View 1 2 3 4 1 chunk +41 lines, -0 lines 0 comments Download
A LayoutTests/inspector/sources/debugger/script-failed-to-parse-expected.txt View 1 2 3 4 1 chunk +7 lines, -0 lines 0 comments Download
M Source/bindings/core/v8/PageScriptDebugServer.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/ScriptDebugServer.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/ScriptDebugServer.cpp View 1 2 3 4 5 4 chunks +5 lines, -5 lines 0 comments Download
M Source/bindings/core/v8/WorkerScriptDebugServer.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/core/inspector/InspectorDebuggerAgent.h View 1 2 3 4 5 1 chunk +1 line, -2 lines 0 comments Download
M Source/core/inspector/InspectorDebuggerAgent.cpp View 1 2 3 4 5 3 chunks +7 lines, -8 lines 0 comments Download
M Source/core/inspector/ScriptDebugListener.h View 1 2 3 4 5 2 chunks +3 lines, -2 lines 0 comments Download
M Source/devtools/Inspector-1.1.json View 1 2 3 1 chunk +9 lines, -5 lines 0 comments Download
M Source/devtools/front_end/sdk/DebuggerModel.js View 1 2 3 2 chunks +17 lines, -8 lines 0 comments Download
M Source/devtools/front_end/sdk/NetworkUISourceCodeProvider.js View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M Source/devtools/protocol.json View 1 2 3 4 1 chunk +9 lines, -5 lines 0 comments Download

Messages

Total messages: 21 (0 generated)
kozyatinskiy1
6 years, 7 months ago (2014-05-16 09:51:40 UTC) #1
vsevik
Let's extract console messages related stuff to a separate patch. Both of the CLs should ...
6 years, 5 months ago (2014-06-27 12:35:06 UTC) #2
vsevik
https://chromiumcodereview.appspot.com/272613002/diff/1/Source/bindings/v8/ScriptDebugServer.cpp File Source/bindings/v8/ScriptDebugServer.cpp (right): https://chromiumcodereview.appspot.com/272613002/diff/1/Source/bindings/v8/ScriptDebugServer.cpp#newcode501 Source/bindings/v8/ScriptDebugServer.cpp:501: } else if (event == v8::ScriptFailedToParse) { Please rebaseline ...
6 years, 5 months ago (2014-06-27 12:35:14 UTC) #3
kozyatinskiy1
On 2014/06/27 12:35:14, vsevik wrote: > https://chromiumcodereview.appspot.com/272613002/diff/1/Source/bindings/v8/ScriptDebugServer.cpp > File Source/bindings/v8/ScriptDebugServer.cpp (right): > > https://chromiumcodereview.appspot.com/272613002/diff/1/Source/bindings/v8/ScriptDebugServer.cpp#newcode501 > ...
6 years, 5 months ago (2014-07-02 13:44:45 UTC) #4
vsevik
lgtm, Pavel, could you please confirm protocol changes are fine? We are changing inspector-1.1.json here, ...
6 years, 5 months ago (2014-07-02 15:06:42 UTC) #5
aandrey
https://codereview.chromium.org/272613002/diff/40001/Source/devtools/protocol.json File Source/devtools/protocol.json (left): https://codereview.chromium.org/272613002/diff/40001/Source/devtools/protocol.json#oldcode3324 Source/devtools/protocol.json:3324: { "name": "errorMessage", "type": "string", "description": "Parse error message." ...
6 years, 5 months ago (2014-07-02 17:01:02 UTC) #6
kozyatinskiy1
On 2014/07/02 15:06:42, vsevik wrote: > https://codereview.chromium.org/272613002/diff/40001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html > File LayoutTests/inspector/sources/debugger/script-failed-to-parse.html (right): > > https://codereview.chromium.org/272613002/diff/40001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html#newcode18 > ...
6 years, 5 months ago (2014-07-02 17:32:50 UTC) #7
aandrey
> https://codereview.chromium.org/272613002/diff/40001/Source/devtools/protocol.json#oldcode3324 > > Source/devtools/protocol.json:3324: { "name": "errorMessage", "type": > "string", > > "description": "Parse ...
6 years, 5 months ago (2014-07-02 17:57:25 UTC) #8
kozyatinskiy1
On 2014/07/02 17:57:25, aandrey wrote: > > > https://codereview.chromium.org/272613002/diff/40001/Source/devtools/protocol.json#oldcode3324 > > > Source/devtools/protocol.json:3324: { "name": ...
6 years, 5 months ago (2014-07-07 13:50:27 UTC) #9
aandrey
https://codereview.chromium.org/272613002/diff/80001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html File LayoutTests/inspector/sources/debugger/script-failed-to-parse.html (right): https://codereview.chromium.org/272613002/diff/80001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html#newcode14 LayoutTests/inspector/sources/debugger/script-failed-to-parse.html:14: var test = function() nit: function test() { https://codereview.chromium.org/272613002/diff/80001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html#newcode36 ...
6 years, 5 months ago (2014-07-07 19:44:32 UTC) #10
kozyatinskiy1
On 2014/07/07 19:44:32, aandrey wrote: > https://codereview.chromium.org/272613002/diff/80001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html > File LayoutTests/inspector/sources/debugger/script-failed-to-parse.html (right): > > https://codereview.chromium.org/272613002/diff/80001/LayoutTests/inspector/sources/debugger/script-failed-to-parse.html#newcode14 > ...
6 years, 5 months ago (2014-07-14 12:20:26 UTC) #11
vsevik
lgtm https://codereview.chromium.org/272613002/diff/120001/Source/core/inspector/ScriptDebugListener.h File Source/core/inspector/ScriptDebugListener.h (right): https://codereview.chromium.org/272613002/diff/120001/Source/core/inspector/ScriptDebugListener.h#newcode44 Source/core/inspector/ScriptDebugListener.h:44: enum CompileError { NoCompileError, FailedToParseSource }; CompileResult { ...
6 years, 5 months ago (2014-07-14 12:27:50 UTC) #12
kozyatinskiy1
https://codereview.chromium.org/272613002/diff/120001/Source/core/inspector/ScriptDebugListener.h File Source/core/inspector/ScriptDebugListener.h (right): https://codereview.chromium.org/272613002/diff/120001/Source/core/inspector/ScriptDebugListener.h#newcode44 Source/core/inspector/ScriptDebugListener.h:44: enum CompileError { NoCompileError, FailedToParseSource }; On 2014/07/14 12:27:50, ...
6 years, 5 months ago (2014-07-14 13:17:29 UTC) #13
aandrey
lgtm
6 years, 5 months ago (2014-07-14 13:56:56 UTC) #14
vsevik
The CQ bit was checked by vsevik@chromium.org
6 years, 5 months ago (2014-07-14 14:02:25 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kozyatinskiy@google.com/272613002/140001
6 years, 5 months ago (2014-07-14 14:02:43 UTC) #16
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: blink_presubmit on tryserver.blink ...
6 years, 5 months ago (2014-07-14 14:49:44 UTC) #17
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-14 14:52:07 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: blink_presubmit on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/blink_presubmit/builds/10067)
6 years, 5 months ago (2014-07-14 14:52:08 UTC) #19
pfeldman
lgtm
6 years, 5 months ago (2014-07-14 14:56:38 UTC) #20
commit-bot: I haz the power
6 years, 5 months ago (2014-07-14 14:59:56 UTC) #21
Message was sent while issue was closed.
Change committed as 178062

Powered by Google App Engine
This is Rietveld 408576698