summaryrefslogtreecommitdiff
path: root/cli/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2020-01-16 16:42:58 -0800
committerRy Dahl <ry@tinyclouds.org>2020-01-16 19:42:58 -0500
commit0a78bfb836f520d3709a32c8a978d08d33198d83 (patch)
treeaa96e2164ea39d8856a4eca7eeb5c21388d8a4b7 /cli/js/deno.ts
parentcad7b3e4fe4e368882628dbde8512f36d142098b (diff)
Add Deno.symbols and move internal fields for test (#3693)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r--cli/js/deno.ts14
1 files changed, 3 insertions, 11 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts
index ed100ef22..a754bc4e2 100644
--- a/cli/js/deno.ts
+++ b/cli/js/deno.ts
@@ -100,7 +100,7 @@ export {
Signal
} from "./process.ts";
export { transpileOnly, compile, bundle } from "./compiler_api.ts";
-export { inspect, customInspect } from "./console.ts";
+export { inspect } from "./console.ts";
export { build, OperatingSystem, Arch } from "./build.ts";
export { version } from "./version.ts";
export const args: string[] = [];
@@ -110,18 +110,10 @@ export const args: string[] = [];
/** @internal */
export { core } from "./core.ts";
-/** @internal */
-export { setPrepareStackTrace } from "./error_stack.ts";
-
-// TODO Don't expose Console nor stringifyArgs.
-/** @internal */
-export { Console, stringifyArgs } from "./console.ts";
-// TODO Don't expose DomIterableMixin.
-/** @internal */
-export { DomIterableMixin } from "./mixins/dom_iterable.ts";
-
/** The current process id of the runtime. */
export let pid: number;
/** Reflects the NO_COLOR environment variable: https://no-color.org/ */
export let noColor: boolean;
+
+export { symbols } from "./symbols.ts";