microsoft / microsoft/vscode-mono-debug
Same variable name in different scopes
Nobody has claimed this yet.
- Dominant language
- C#
- Stars
- 180
- Forks
- 182
- Avg merge
- 1d 8h
- Merged PRs (30d)
- 1
Description
Hey, I'm not sure if this is the right place to post this issue. It may be an issue with mono itself. Please close this if it is unrelated to this project.
You can reproduce the issue like so:
public enum TestEnum {
A,
B,
C,
};
{
TestEnum test = TestEnum.B;
Debug.LogWarning(test);
}
{
TestEnum test = TestEnum.C;
Debug.LogWarning(test);
}
When putting a breakpoint on the second test and reading its value, a value of B will be reported, when the correct value is C.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the issue with the C# example in the report under the Mono debugger, setting a breakpoint on the second test variable. Trace how the debugger resolves local variables across scopes and verify that the inspected value is C rather than B when the issue is fixed.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- csharp
- Domain
- devtools
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100