MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / ConstraintSyntaxError

Class ConstraintSyntaxError

packages/core/src/constraints/parser.ts:66–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66export class ConstraintSyntaxError extends Error {
67 readonly source: string;
68 readonly position: number;
69
70 constructor(source: string, detail: string, position: number) {
71 super(formatErrorMessage(source, detail, position));
72 this.name = "ConstraintSyntaxError";
73 this.source = source;
74 this.position = position;
75 }
76}
77
78class Parser {
79 readonly source: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected