Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Theia does not update breakpoints with 0 ID #14865

Closed
kittaakos opened this issue Feb 7, 2025 · 0 comments · Fixed by #14866
Closed

Theia does not update breakpoints with 0 ID #14865

kittaakos opened this issue Feb 7, 2025 · 0 comments · Fixed by #14866
Labels
bug bugs found in the application debug issues that related to debug functionality

Comments

@kittaakos
Copy link
Contributor

Bug Description:

When the current stack frame is on a breakpoint, Theia marks the breakpoint as unbound. On the UI, it looks like it's disabled.

Steps to Reproduce:

index2.js:

console.log('hello')
console.log('world')

./vscode/launch.json:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${workspaceFolder}/index2.js"
        }
    ]
}
  1. Open the Debug view
  2. Set a breakpoint to lines 1 and 2 in the index2.js file
  3. Launch Launch Program
  4. The debugger stops on line 1
  5. The breakpoint is unbound 🐛
Screen.Recording.2025-02-07.at.10.49.23.mov

Additional Information

  • Operating System:
  • Theia Version: Version 1.58.100
@kittaakos kittaakos changed the title Theia marks the breakpoint as unbound if it's the current stack frame Theia does not update breakpoints with 0 ID Feb 7, 2025
@msujew msujew added bug bugs found in the application debug issues that related to debug functionality labels Feb 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug bugs found in the application debug issues that related to debug functionality
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants