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

Hovering the gray circle breakpoint in the editor does not show warning message about not being able to set bks #153554

Closed
DonJayamanne opened this issue Jun 28, 2022 · 2 comments
Assignees

Comments

@DonJayamanne
Copy link
Contributor

Testing #150664

  • Create a file named one.js
console.log('1234')

function hellothere(){
	const x = require('./two.js');
	x.saySomething();
}

hellothere();
  • Create a file named two.js
exports.saySomething = function () {
  console.log("Said somethign");
  return "1234";
};
  • Add a break point to the last line hellothere in one.js
  • Add a breakpoint to the secod line (inside saySomething fn) in two.js
  • Start debugging
  • The warning icon appears as expected and displays the right message
  • However the following does not work
    Hovering the gray circle breakpoint in the editor shows the same message
@roblourens
Copy link
Member

It works for me

image

Are you sure?

@DonJayamanne
Copy link
Contributor Author

Oh wait you meant in the editor, i thought you were referring to the grey circle against the bk in the bk panel.
Works as expected

@github-actions github-actions bot locked and limited conversation to collaborators Aug 12, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants