(
annotations: Schema.Annotations.Annotations | undefined,
method: "annotate" | "annotateKey" = "annotate"
)
| 323 | } |
| 324 | |
| 325 | function runtimeAnnotate( |
| 326 | annotations: Schema.Annotations.Annotations | undefined, |
| 327 | method: "annotate" | "annotateKey" = "annotate" |
| 328 | ): string { |
| 329 | const rendered = renderAnnotations(annotations) |
| 330 | return rendered === undefined ? "" : `.${method}(${rendered})` |
| 331 | } |
| 332 | |
| 333 | function compileCheck( |
| 334 | check: SchemaRepresentation.Check, |
no test coverage detected