MCPcopy Create free account
hub / github.com/angular/angular / LetDeclaration

Class LetDeclaration

packages/compiler/src/ml_parser/ast.ts:210–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210export 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
224export interface Visitor {
225 // Returning a truthy value from `visit()` will prevent `visitAll()` from the call to the typed

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected