(this: DocTree.DocTree<any>)
| 85 | const proto = { |
| 86 | [DocTreeTypeId]: { _A: (_: never) => _ }, |
| 87 | [Hash.symbol](this: DocTree.DocTree<any>) { |
| 88 | return Hash.cached(this, protoHash[this._tag](this as any)) |
| 89 | }, |
| 90 | [Equal.symbol](this: DocTree.DocTree<any>, that: unknown) { |
| 91 | return protoEqual[this._tag](this as any, that) |
| 92 | } |