Interface GrammarSourceObject

Anything that can successfully be converted to a string with String() so that it can be used in error messages.

The GrammarLocation class in Peggy is a good example.

interface GrammarSourceObject {
    offset?: (loc: Location) => Location;
    toString: () => string;
}

Properties

Properties

offset?: (loc: Location) => Location

If specified, allows the grammar source to be embedded in a larger file at some offset.

toString: () => string