diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-02-20 11:42:19 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-19 21:42:19 -0500 |
commit | c4e37285758ff4cc5d388db2d880ed91decb3d29 (patch) | |
tree | 0c4f813da45a6407359ea739d0cd9b06af138d8e /js/repl.ts | |
parent | a5720d9e28f7ee5868049504816405392c2821d7 (diff) |
remove global_eval.ts (#1813)
Diffstat (limited to 'js/repl.ts')
-rw-r--r-- | js/repl.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/repl.ts b/js/repl.ts index f7ddb2bdf..2c050bf5b 100644 --- a/js/repl.ts +++ b/js/repl.ts @@ -5,12 +5,10 @@ import { assert } from "./util"; import { close } from "./files"; import * as dispatch from "./dispatch"; import { exit } from "./os"; -import { globalEval } from "./global_eval"; +import { window } from "./window"; import { libdeno } from "./libdeno"; import { formatError } from "./format_error"; -const window = globalEval("this"); - const helpMsg = [ "exit Exit the REPL", "help Print this help message" |