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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js

Issue 2139363005: [DevTools] Fix native function console output (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « third_party/WebKit/Source/devtools/front_end/components/ObjectPopoverHelper.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
index 70899b5cb9245d256cb50fb8ce17c0c9c417ee08..c1f6ce47f8c406f7b63c656cb63877ebcfb1497f 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
@@ -662,12 +662,14 @@ WebInspector.DebuggerModel.prototype = {
*/
function buildDetails(response)
{
- if (!response || !response.internalProperties)
+ if (!response)
return null;
var location = null;
- for (var prop of response.internalProperties) {
- if (prop.name === "[[FunctionLocation]]")
- location = prop.value;
+ if (response.internalProperties) {
+ for (var prop of response.internalProperties) {
+ if (prop.name === "[[FunctionLocation]]")
+ location = prop.value;
+ }
}
var functionName = null;
if (response.properties) {
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/components/ObjectPopoverHelper.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698