Interface CookedParseReturn

Return type interface for the parseLedgerToRaw method.

interface CookedParseReturn {
    cookedJournal: Cooked.Journal;
    lexErrors: ILexingError[];
    parseErrors: IRecognitionException[];
}

Hierarchy (view full)

Properties

cookedJournal: Cooked.Journal

A !.!Journal object constituting a parsed hledger journal with contextual information 'baked in' to the object

lexErrors: ILexingError[]

An array list of all encountered lexer errors

parseErrors: IRecognitionException[]

An array list of all encountered parsing errors

Generated using TypeDoc