diff options
Diffstat (limited to 'cli/js/ops/repl.ts')
-rw-r--r-- | cli/js/ops/repl.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/js/ops/repl.ts b/cli/js/ops/repl.ts deleted file mode 100644 index 1781aa089..000000000 --- a/cli/js/ops/repl.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - -import { sendSync, sendAsync } from "./dispatch_json.ts"; - -export function startRepl(historyFile: string): number { - return sendSync("op_repl_start", { historyFile }); -} - -export function readline(rid: number, prompt: string): Promise<string> { - return sendAsync("op_repl_readline", { rid, prompt }); -} |