(block: Block, context: any)
| 281 | visitExpansionCase(ast: ExpansionCase, context: any): any {} |
| 282 | |
| 283 | visitBlock(block: Block, context: any): any { |
| 284 | this.visitChildren(context, (visit) => { |
| 285 | visit(block.parameters); |
| 286 | visit(block.children); |
| 287 | }); |
| 288 | } |
| 289 | |
| 290 | visitBlockParameter(ast: BlockParameter, context: any): any {} |
| 291 |
nothing calls this directly
no test coverage detected