Interface EDNoptions

interface EDNoptions {
    grammarSource?: GrammarSource;
    startRule?: StartRuleNames;
    validateUTF8?: boolean;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

    These are passed along to the grammar. Never needed.

Properties

grammarSource?: GrammarSource

Set if parsing from a file to make error messages more helpful.

startRule?: StartRuleNames

Start rule. Sane choices are "seq" and "one-item" (the default).

validateUTF8?: boolean

Validate UTF8 for strings.