| 1049 | ast: AST.AST |
| 1050 | ): declare<A, I, P, R> { |
| 1051 | return class DeclareClass extends make<A, I, R>(ast) { |
| 1052 | static override annotations(annotations: Annotations.Schema<A>): declare<A, I, P, R> { |
| 1053 | return makeDeclareClass(this.typeParameters, mergeSchemaAnnotations(this.ast, annotations)) |
| 1054 | } |
| 1055 | static typeParameters = [...typeParameters] as any as P |
| 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | /** |
nothing calls this directly
no test coverage detected
searching dependent graphs…