@internal
(s: symbol, options: ParseOptions)
| 1547 | } |
| 1548 | /** @internal */ |
| 1549 | matchKey(s: symbol, options: ParseOptions): symbol | undefined { |
| 1550 | if (options.disableChecks || !this.checks) return s |
| 1551 | return collectIssues(this.checks, s, undefined, this, options) ? undefined : s |
| 1552 | } |
| 1553 | /** @internal */ |
| 1554 | toCodecStringTree(): AST { |
| 1555 | return replaceEncoding(this, [symbolToString]) |
nothing calls this directly
no test coverage detected