-
Notifications
You must be signed in to change notification settings - Fork 29.9k
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
Loaded scripts view does not get dynamically updated #57401
Comments
@isidorn I suspect that loadedScripts events are no longer arriving. |
@isidorn the new sessions event are no longer arriving here: As a consequence I do not register for loadedScriptsEvents. This issue was probably introduced by the listener refactoring and should be referenced by test item #56822. |
The issue here was that the loaded scripts view gets created only after a session is already alive so he was missing listeners on session which is already present. |
Careful: if the order of events has changed that drastically after your refactoring, we are potentially breaking extensions that use the newSessionEvent. I don't like this fix. |
The order of events has not changed. The only thing that changed is internaly how people register to the loadedScriptsEvent, since it is now on the session, not on the service. |
@alexandrudima sorry about that. We do have linux and os x builds, however integration tests are faililng for windows. I will re-trigger builds since I see you have to test windows - they should be out in 30 minutes. And yes you can also test from source afaik |
Refs: #57249
Have the following JS workspace https://github.com/Microsoft/vscode/files/2238799/loadedScripts.zip
Start debugging hello.js, do a step by step. I would expect the loaded scripts updates and shows new scripts as they get required. Instead the view is always the same
The text was updated successfully, but these errors were encountered: