(ast: SchemaAST.AST)
| 343 | const getArbitraryAnnotation = SchemaAST.getAnnotation<ArbitraryAnnotation<any, any>>(SchemaAST.ArbitraryAnnotationId) |
| 344 | |
| 345 | const getASTConstraints = (ast: SchemaAST.AST) => { |
| 346 | const TypeAnnotationId = ast.annotations[SchemaAST.SchemaIdAnnotationId] |
| 347 | if (Predicate.isPropertyKey(TypeAnnotationId)) { |
| 348 | const out = ast.annotations[TypeAnnotationId] |
| 349 | if (Predicate.isReadonlyRecord(out)) { |
| 350 | return out |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | const idMemoMap = globalValue( |
| 356 | Symbol.for("effect/Arbitrary/IdMemoMap"), |
no outgoing calls
no test coverage detected
searching dependent graphs…