-
Notifications
You must be signed in to change notification settings - Fork 304
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
Adding the DebuggingManager to src/platform/serviceRegistry.web.ts #10029
Conversation
I'm getting:
However, I'll check eslint before pushing. |
Codecov Report
@@ Coverage Diff @@
## main #10029 +/- ##
======================================
Coverage 63% 64%
======================================
Files 215 215
Lines 10122 10122
Branches 1612 1612
======================================
+ Hits 6473 6479 +6
+ Misses 3131 3123 -8
- Partials 518 520 +2
|
I have two more commits here: https://github.com/microsoft/vscode-jupyter/compare/main...sadasant:web-DebuggingManager-extra?expand=1 There I:
Those commits seem innocuous. Should I add them to this PR? |
I tried adding I also tried adding I'd rather add these changes as part of a separate PR. |
@sadasant Ahh, sorry, didn't pick this up before my PR. Looks like you / me / Don were all in the same area. I believe this is now covered by my PR that went in. Do you have a PR up for the variable requestor work that I could take a peek at? |
Thanks to the recent PR by @rebornix #10016 and my studies on some branches (1, 2), I believe I can start working towards #9665 by ensuring the DebuggingManager runs as part of
serviceRegistry.web.ts
.The migration is fairly simple, since none of the internals depend on Node.js as far as I could tell.
The changes in this PR can be tested by:
Extension (web)
and confirming that anything runs on a.ipynb
file (which does work).If this makes sense, this PR will be the first on a series of PRs breaking down #9665 into reasonable chunks of code.