summaryrefslogtreecommitdiff
path: root/cli/tools/repl/mod.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-07-02 23:37:54 +0100
committerGitHub <noreply@github.com>2024-07-03 00:37:54 +0200
commit7d919f6fd980ed54785e86892a518f0bdf68f475 (patch)
treedda1342e996b4d8d19ff0aa17892590822d2b56f /cli/tools/repl/mod.rs
parentc13b6d1413859d03b41b97d4c671fccfd388b2cc (diff)
refactor(jupyter): move ZeroMQ server to a separate thread (#24373)
Moves the ZeroMQ messaging server to a separate thread. This will allow to run blocking JS code and maintain communication with the notebook frontend. Towards https://github.com/denoland/deno/pull/23592 Towards https://github.com/denoland/deno/pull/24250 Closes https://github.com/denoland/deno/issues/23617
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r--cli/tools/repl/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs
index db1d75dad..5bd59888d 100644
--- a/cli/tools/repl/mod.rs
+++ b/cli/tools/repl/mod.rs
@@ -30,6 +30,7 @@ use editor::EditorHelper;
use editor::ReplEditor;
pub use session::EvaluationOutput;
pub use session::ReplSession;
+pub use session::TsEvaluateResponse;
pub use session::REPL_INTERNALS_NAME;
use super::test::create_single_test_event_channel;