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

Class TreeError

packages/compiler/src/ml_parser/parser.ts:55–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53}
54
55export class TreeError extends ParseError {
56 static create(elementName: string | null, span: ParseSourceSpan, msg: string): TreeError {
57 return new TreeError(elementName, span, msg);
58 }
59
60 constructor(
61 public elementName: string | null,
62 span: ParseSourceSpan,
63 msg: string,
64 ) {
65 super(span, msg);
66 }
67}
68
69export class ParseTreeResult {
70 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…