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

Class Directive

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

Source from the content-addressed store, hash-verified

183}
184
185export class Directive implements BaseNode {
186 constructor(
187 readonly name: string,
188 readonly attrs: Attribute[],
189 readonly sourceSpan: ParseSourceSpan,
190 readonly startSourceSpan: ParseSourceSpan,
191 readonly endSourceSpan: ParseSourceSpan | null = null,
192 ) {}
193
194 visit(visitor: Visitor, context: any): any {
195 return visitor.visitDirective(this, context);
196 }
197}
198
199export class BlockParameter implements BaseNode {
200 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…