MCPcopy Index your code
hub / github.com/angular/angular / StartTagComment

Class StartTagComment

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

Source from the content-addressed store, hash-verified

99}
100
101export class StartTagComment implements BaseNode {
102 constructor(
103 public value: string,
104 public type: 'single' | 'multi',
105 public sourceSpan: ParseSourceSpan,
106 ) {}
107 visit(visitor: Visitor, context: any): any {
108 return visitor.visitStartTagComment ? visitor.visitStartTagComment(this, context) : undefined;
109 }
110}
111
112export class Element extends NodeWithI18n {
113 constructor(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…