(
schema: Schema.Top,
annotations: Schema.Annotations.Annotations | undefined
)
| 187 | } |
| 188 | |
| 189 | function annotate( |
| 190 | schema: Schema.Top, |
| 191 | annotations: Schema.Annotations.Annotations | undefined |
| 192 | ): Schema.Top { |
| 193 | return annotations === undefined ? schema : schema.annotate(annotations) |
| 194 | } |
| 195 | |
| 196 | function finishStructural( |
| 197 | schema: Schema.Top, |
no test coverage detected