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/web/streams/readable_byte_stream_controller.ts | |
parent | 2f0641885c62ba6a1e58ae0030f635efd3f35b2a (diff) |
BREAKING: Remove Deno.symbols namespace (#4936)
Diffstat (limited to 'cli/js/web/streams/readable_byte_stream_controller.ts')
-rw-r--r-- | cli/js/web/streams/readable_byte_stream_controller.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/web/streams/readable_byte_stream_controller.ts b/cli/js/web/streams/readable_byte_stream_controller.ts index 615eff968..80ba9ad85 100644 --- a/cli/js/web/streams/readable_byte_stream_controller.ts +++ b/cli/js/web/streams/readable_byte_stream_controller.ts @@ -22,7 +22,7 @@ import { import { ReadableStreamImpl } from "./readable_stream.ts"; import * as sym from "./symbols.ts"; import { assert } from "../../util.ts"; -import { symbols } from "../../symbols.ts"; +import { customInspect } from "../../web/console.ts"; export class ReadableByteStreamControllerImpl implements ReadableByteStreamController { @@ -135,7 +135,7 @@ export class ReadableByteStreamControllerImpl return promise; } - [symbols.customInspect](): string { + [customInspect](): string { return `ReadableByteStreamController { byobRequest: ${String( this.byobRequest )}, desiredSize: ${String(this.desiredSize)} }`; |