@internal
(recur: (ast: AST) => AST)
| 2903 | } |
| 2904 | /** @internal */ |
| 2905 | recur(recur: (ast: AST) => AST) { |
| 2906 | return this._rebuild(recur, this.checks, this.encodingChecks) |
| 2907 | } |
| 2908 | /** @internal */ |
| 2909 | flip(recur: (ast: AST) => AST) { |
| 2910 | return this._rebuild(recur, this.encodingChecks, this.checks) |
no test coverage detected