Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Fixes #10168
Fixes #10615
Fixes #10616
|
|
Fixes #10765
|
|
|
|
Fixes #10733
|
|
|
|
|
|
|
|
|
|
Fixes #9823
|
|
|
|
|
|
Signed-off-by: 迷渡 <justjavac@gmail.com>
|
|
|
|
|
|
Resolves: #10587
|
|
|
|
Fixes #10603
|
|
|
|
|
|
This commits adds two integration tests that typecheck examples
in the docstrings in Deno declaration files.
|
|
|
|
|
|
|
|
|
|
Fixes #10695
|
|
|
|
|
|
|
|
|
|
Closes: #10413
|
|
|
|
|
|
Closes #9932
|
|
Resolves #9447
Resolves #9415
|
|
Fixes #10575
|
|
|
|
|
|
Fixes #10168
Fixes #10615
Fixes #10616
|
|
This speeds up incremental rebuild when only touching JS files by 30%
compared to #10786.
Rebuild time after touch 01_broadcast_channel.js:
main: run 1 49.18s, run 2 50.34s
#10786: run 1 43.12s, run 2 43.19s
this + #10786: run 1 30.30s, run 2 30.95s
|
|
Fixes #10765
|
|
|
|
|
|
Fixes #10733
|
|
Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
|
|
|
|
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.
|