diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-17 18:09:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 18:09:50 +0200 |
commit | bda937938550a0969588a6878d2fb6d72c17b22d (patch) | |
tree | cad613f3e6ec0dcc545a08e8ec394b599425babd /cli/rt/40_process.js | |
parent | 3421f4dbbd5cabb3a0866ebb3b8aeae5b62730ef (diff) |
refactor: move op_resources and op_close to deno_core (#7539)
Moves op_close and op_resources to deno_core::ops and exports them.
Adds serde dependency to deno_core and reexports it.
Moves JS implementation of those ops to Deno.core and reexports them in Deno.
Diffstat (limited to 'cli/rt/40_process.js')
-rw-r--r-- | cli/rt/40_process.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/rt/40_process.js b/cli/rt/40_process.js index e188e9c6a..b46a1aead 100644 --- a/cli/rt/40_process.js +++ b/cli/rt/40_process.js @@ -3,7 +3,6 @@ ((window) => { const core = window.Deno.core; const { File } = window.__bootstrap.files; - const { close } = window.__bootstrap.resources; const { readAll } = window.__bootstrap.buffer; const { assert, pathFromURL } = window.__bootstrap.util; @@ -78,7 +77,7 @@ } close() { - close(this.rid); + core.close(this.rid); } kill(signo) { |