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

Unified Diff: third_party/WebKit/Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp

Issue 2915643002: Fix IntelliJ debugging from returning scriptFailedToParse. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp
diff --git a/third_party/WebKit/Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp b/third_party/WebKit/Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp
index a287c96f17975100a883290ca524e507fb760f27..c8de6173e94f501fabc05d90c449cdbb6ccfb970 100644
--- a/third_party/WebKit/Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp
@@ -927,7 +927,7 @@ void DartInspectorDebuggerAgent::didParseSource(const String& scriptId, const Sc
bool* hasSourceURLParam = hasSourceURL ? &hasSourceURL : 0;
RELEASE_ASSERT(frontend());
- if (!success)
+ if (success)
frontend()->scriptParsed(
scriptId,
scriptURL,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698