(ast: AST.AST)
| 770 | } |
| 771 | |
| 772 | const getConcurrency = (ast: AST.AST): Concurrency | undefined => |
| 773 | Option.getOrUndefined(AST.getConcurrencyAnnotation(ast)) |
| 774 | |
| 775 | const getBatching = (ast: AST.AST): boolean | "inherit" | undefined => |
| 776 | Option.getOrUndefined(AST.getBatchingAnnotation(ast)) |