@internal
(recur: (ast: AST) => AST, recurParameter: (ast: AST) => AST = recur)
| 2373 | } |
| 2374 | /** @internal */ |
| 2375 | recur(recur: (ast: AST) => AST, recurParameter: (ast: AST) => AST = recur): AST { |
| 2376 | return this._rebuild(recur, recurParameter, this.checks, this.encodingChecks) |
| 2377 | } |
| 2378 | /** @internal */ |
| 2379 | getExpected(): string { |
| 2380 | if (this.propertySignatures.length === 0 && this.indexSignatures.length === 0) return "object | array" |