| 197 | } |
| 198 | |
| 199 | export class BlockParameter implements BaseNode { |
| 200 | constructor( |
| 201 | public expression: string, |
| 202 | public sourceSpan: ParseSourceSpan, |
| 203 | ) {} |
| 204 | |
| 205 | visit(visitor: Visitor, context: any): any { |
| 206 | return visitor.visitBlockParameter(this, context); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | export class LetDeclaration implements BaseNode { |
| 211 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…