Export to GitHub

fbug - issue #353

"Watch" variable problem: local variable values not shown


Posted on Oct 31, 2007 by Swift Camel

What steps will reproduce the problem? 1. Declare global variable 2. Declare function with local variable that have same name as global variable 3. Assign value to this variable 4. Try to watch its value in "Watch" window

What is the expected output? What do you see instead? FireBug will display value of global variable with same name But I expected to see value of local variable

What version of the product are you using? On what operating system? FireBug v1.05, WindowsXP Pro

Please provide any additional information below.

<script type="text/javascript" > i= 7; function test() { var i; i= 5; i=i; //Here in "watch" window you will see i=7 instead of i=5 }

test(); </scirpt>

Comment #1

Posted on Mar 12, 2008 by Quick Elephant

(No comment was entered for this change.)

Comment #2

Posted on Mar 18, 2008 by Quick Elephant

(No comment was entered for this change.)

Comment #3

Posted on May 14, 2008 by Grumpy Horse

Comment deleted

Attachments

Comment #4

Posted on May 14, 2008 by Grumpy Horse

Addition: the tooltip on the local variable shows the value of the global variable.

Side note: the problem also occurs if the function have a parameter with the same name as a global variable.

Comment #5

Posted on May 28, 2008 by Quick Elephant

I accidentally figured out how to get values of the local scope, jsdIStackFrame has a property "scope" which is the scope of the top (inner most) stack frame.

Comment #6

Posted on Jun 24, 2008 by Quick Elephant

Looks fixed in branches/firebug1.2. Should be tested on firebug1.2b4.

Comment #7

Posted on Jun 24, 2008 by Quick Elephant

(No comment was entered for this change.)

Comment #8

Posted on Jun 24, 2008 by Grumpy Horse

Comment deleted

Comment #9

Posted on Jun 28, 2008 by Quick Elephant

Thanks for reporting this problem. We believe we have fixed this issue in Firebug 1.2b4 which should be available from addons.mozilla.org during the week of June 30. Please check that this version fixes your problem and let us know.

Comment #10

Posted on Jul 1, 2011 by Happy Giraffe

Just marking with new standard label.

Status: Fixed

Labels:
Type-Defect Priority-Medium debugger 1.0 Test-case-available