@agentix-e/spel-ts - v1.2.2
    Preparing search index...

    Interface ParseResult

    Result of parsing a SpEL expression

    interface ParseResult {
        ast?: SpelNodeImpl;
        errors: ParseError[];
        valid: boolean;
    }
    Index

    AST root node on successful parse. Type is SpelNodeImpl for strong typing (was unknown in nl2spel's definition).

    errors: ParseError[]

    Parse errors (empty if valid)

    valid: boolean

    Whether the expression is syntactically valid