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

Unified Diff: Source/WebCore/bindings/v8/DebuggerScript.js

Issue 8017006: Merge 95083 - Web Inspector: [v8] building call frame info for location-less internal script func... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 3 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
Index: Source/WebCore/bindings/v8/DebuggerScript.js
===================================================================
--- Source/WebCore/bindings/v8/DebuggerScript.js (revision 95801)
+++ Source/WebCore/bindings/v8/DebuggerScript.js (working copy)
@@ -264,8 +264,8 @@
return {
"sourceID": sourceID,
- "line": location.line,
- "column": location.column,
+ "line": location ? location.line : 0,
+ "column": location ? location.column : 0,
"functionName": functionName,
"thisObject": thisObject,
"scopeChain": scopeChain,

Powered by Google App Engine
This is Rietveld 408576698