| 208 | } |
| 209 | |
| 210 | export class LetDeclaration implements BaseNode { |
| 211 | constructor( |
| 212 | public name: string, |
| 213 | public value: string, |
| 214 | public sourceSpan: ParseSourceSpan, |
| 215 | readonly nameSpan: ParseSourceSpan, |
| 216 | public valueSpan: ParseSourceSpan, |
| 217 | ) {} |
| 218 | |
| 219 | visit(visitor: Visitor, context: any): any { |
| 220 | return visitor.visitLetDeclaration(this, context); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | export interface Visitor { |
| 225 | // Returning a truthy value from `visit()` will prevent `visitAll()` from the call to the typed |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…