-
Notifications
You must be signed in to change notification settings - Fork 96
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
refactor: Rewrite LocalInspectorSession
for node:inspector
support
#883
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #883 +/- ##
==========================================
- Coverage 81.43% 81.22% -0.22%
==========================================
Files 97 98 +1
Lines 23877 24882 +1005
==========================================
+ Hits 19445 20211 +766
- Misses 4432 4671 +239 ☔ View full report in Codecov by Sentry. |
fn drop(&mut self) { | ||
eprintln!("Dropping LocalInspectorSessionRaw"); | ||
} | ||
} | ||
/// A local inspector session that can be used to send and receive protocol messages directly on | ||
/// the same thread as an isolate. | ||
pub struct LocalInspectorSession { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This struct should probably be let go from deno_core
, but I'm still weighing it. node:inspector
needs low level access to handle notifications/message response it self, but REPL, Jupyter and HMR runner rely on high-level API to await responses when posting.
Closing in favor of #938 |
No description provided.