MCPcopy
hub / github.com/angular/angular / Comment

Class Comment

packages/compiler/src/render3/r3_ast.ts:33–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 * is true.
32 */
33export class Comment implements Node {
34 constructor(
35 public value: string,
36 public sourceSpan: ParseSourceSpan,
37 ) {}
38 visit<Result>(_visitor: Visitor<Result>): Result {
39 throw new Error('visit() not implemented for Comment');
40 }
41}
42
43export class Text implements Node {
44 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…