diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2021-06-25 16:19:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 16:19:18 +0900 |
commit | d832d2bfd1f0487181f96bdecd7a28968a150fac (patch) | |
tree | b4e40fa8689bf97434470cfce9f303f8ddeacf9a /runtime/js/40_permissions.js | |
parent | 606611708c4351e9f5e0e3b975f9331d95168efb (diff) |
chore(ext/console): deprecate Deno.customInspect (#10035)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'runtime/js/40_permissions.js')
-rw-r--r-- | runtime/js/40_permissions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/40_permissions.js b/runtime/js/40_permissions.js index b36fb643a..00b1a2974 100644 --- a/runtime/js/40_permissions.js +++ b/runtime/js/40_permissions.js @@ -87,7 +87,7 @@ return dispatched; } - [Symbol.for("Deno.customInspect")](inspect) { + [Symbol.for("Deno.privateCustomInspect")](inspect) { return `${this.constructor.name} ${ inspect({ state: this.state, onchange: this.onchange }) }`; |