Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-28 | refactor(core): cleanup Inspector implementation (#12962) | Bartek Iwańczuk | |
2021-12-17 | fix: inspector prompts (#13123) | Bartek Iwańczuk | |
This commit fixes prompts printed to the terminal when running with "--inspect" or "--inspect-brk" flags. When debugger disconnects error is no longer printed as users don't care about the reason debugger did disconnect. A message suggesting to go to "chrome://inspect" is printed if debugger is active. Additionally and information that process is waiting for debugger to connect is printed if running with "--inspect-brk" flag. | |||
2021-08-25 | refactor: cleanup Inspector and InspectorServer implementations (#11837) | Bartek Iwańczuk | |
2021-07-20 | fix: panic for non-WS connections to inspector (#11466) | Bartek Iwańczuk | |
2021-06-30 | feat(inspector): improve inspector prompt in Chrome Devtools (#11187) | Bartek Iwańczuk | |
This commit improves how Deno inspector presents itself in Chrome Devtools. | |||
2021-05-26 | refactor: move JsRuntimeInspector to deno_core (#10763) | Bartek Iwańczuk | |
This commit moves implementation of "JsRuntimeInspector" to "deno_core" crate. To achieve that following changes were made: * "Worker" and "WebWorker" no longer own instance of "JsRuntimeInspector", instead it is now owned by "deno_core::JsRuntime". * Consequently polling of inspector is no longer done in "Worker"/"WebWorker", instead it's done in "deno_core::JsRuntime::poll_event_loop". * "deno_core::JsRuntime::poll_event_loop" and "deno_core::JsRuntime::run_event_loop", now accept "wait_for_inspector" boolean that tells if event loop should still be "pending" if there are active inspector sessions - this change fixes the problem that inspector disconnects from the frontend and process exits once the code has stopped executing. |