diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-04-28 00:06:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 01:06:03 +0200 |
commit | 4041a7b8576047021c2eec711f013c6f01e471e0 (patch) | |
tree | e49ade03d1d888ea83a9fccf51ba8742a6365cc7 /cli/js/deno.ts | |
parent | 2f0641885c62ba6a1e58ae0030f635efd3f35b2a (diff) |
BREAKING: Remove Deno.symbols namespace (#4936)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index caf98ac70..355000ac5 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -12,7 +12,7 @@ export { build, OperatingSystem, Arch } from "./build.ts"; export { chmodSync, chmod } from "./ops/fs/chmod.ts"; export { chownSync, chown } from "./ops/fs/chown.ts"; export { transpileOnly, compile, bundle } from "./compiler/api.ts"; -export { inspect } from "./web/console.ts"; +export { customInspect, inspect } from "./web/console.ts"; export { copyFileSync, copyFile } from "./ops/fs/copy_file.ts"; export { Diagnostic, @@ -38,6 +38,7 @@ export { } from "./files.ts"; export { read, readSync, write, writeSync } from "./ops/io.ts"; export { FsEvent, watchFs } from "./ops/fs_events.ts"; +export { internalSymbol as internal } from "./internals.ts"; export { EOF, copy, @@ -123,5 +124,3 @@ export { core } from "./core.ts"; export let pid: number; export let noColor: boolean; - -export { symbols } from "./symbols.ts"; |