| 99 | } |
| 100 | |
| 101 | export 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 | |
| 112 | export class Element extends NodeWithI18n { |
| 113 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…