summaryrefslogtreecommitdiff
path: root/js/console.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-23 11:44:08 -0500
committerGitHub <noreply@github.com>2018-12-23 11:44:08 -0500
commit6cc998f28bb1cf119ca96bac385c7361bc1f7021 (patch)
treed5fb8f0da5c79fa14afc814ea85cf1c9134eb714 /js/console.ts
parentbee55fcd20b4919f2d6b4817ce33d1a09e6bcadc (diff)
Remove support for extensionless import (#1396)
Diffstat (limited to 'js/console.ts')
-rw-r--r--js/console.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/console.ts b/js/console.ts
index ca08330eb..396def545 100644
--- a/js/console.ts
+++ b/js/console.ts
@@ -322,7 +322,7 @@ function stringifyWithQuotes(
}
}
-// @internal
+/** TODO Do not expose this from "deno" namespace. */
export function stringifyArgs(
// tslint:disable-next-line:no-any
args: any[],
@@ -354,8 +354,8 @@ type PrintFunc = (x: string, isErr?: boolean) => void;
const countMap = new Map<string, number>();
const timerMap = new Map<string, number>();
+/** TODO Do not expose this from "deno". */
export class Console {
- // @internal
constructor(private printFunc: PrintFunc) {}
/** Writes the arguments to stdout */