(annotated: AST.Annotated | undefined)
| 414 | } |
| 415 | |
| 416 | function getRawExamples(annotated: AST.Annotated | undefined): ReadonlyArray<unknown> | undefined { |
| 417 | if (annotated !== undefined) return Option.getOrUndefined(AST.getExamplesAnnotation(annotated)) |
| 418 | } |
| 419 | |
| 420 | function encodeExamples(ast: AST.AST, examples: ReadonlyArray<unknown>): Array<JsonValue> | undefined { |
| 421 | const getOption = ParseResult.getOption(ast, false) |
no outgoing calls
no test coverage detected
searching dependent graphs…