[Pkg-mozext-commits] [firebug] 01/16: #7954 Many evaluated expression are listed in the script panel
David Prévot
taffit at moszumanska.debian.org
Sun Feb 7 19:14:47 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository firebug.
commit 93abc19ebdd309ed87de2cbb4916c023d0a97335
Author: Florent FAYOLLE <florent.fayolle69 at gmail.com>
Date: Tue Oct 13 22:04:46 2015 +0200
#7954 Many evaluated expression are listed in the script panel
---
extension/content/firebug/debugger/script/sourceTool.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/extension/content/firebug/debugger/script/sourceTool.js b/extension/content/firebug/debugger/script/sourceTool.js
index 1b90f83..813b291 100644
--- a/extension/content/firebug/debugger/script/sourceTool.js
+++ b/extension/content/firebug/debugger/script/sourceTool.js
@@ -155,7 +155,8 @@ SourceTool.prototype = Obj.extend(new Tool(),
{
// Ignore scripts generated from 'clientEvaluate' packets. These scripts are
// created e.g. as the user is evaluating expressions in the watch window.
- if (DebuggerLib.isFrameLocationEval(script.url))
+ if (script.introductionType === "debugger eval" ||
+ DebuggerLib.isFrameLocationEval(script.url))
{
Trace.sysout("sourceTool.addScript; A script ignored " + script.type +
", " + script.url, script);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firebug.git
More information about the Pkg-mozext-commits
mailing list