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 HorseComment deleted
- Clipboard25.jpg 128.73KB
Comment #4
Posted on May 14, 2008 by Grumpy HorseAddition: 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 ElephantI 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 ElephantLooks 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 HorseComment deleted
Comment #9
Posted on Jun 28, 2008 by Quick ElephantThanks 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 GiraffeJust marking with new standard label.
Status: Fixed
Labels:
Type-Defect
Priority-Medium
debugger
1.0
Test-case-available