@eagleoutice/flowr - v2.10.2
    Preparing search index...

    Contains the normalized AST as a doubly linked tree and a map from ids to nodes so that parent links can be chased easily.

    interface NormalizedAst<
        OtherInfo = ParentInformation,
        Node = RProject<OtherInfo & ParentInformation>,
    > {
        ast: Node;
        hasError?: boolean;
        idMap: AstIdMap<OtherInfo>;
    }

    Type Parameters

    Index

    Properties

    Properties

    ast: Node

    The root of the AST with parent information

    hasError?: boolean

    marks whether the AST contains potential syntax errors

    Bidirectional mapping of ids to the corresponding nodes and the other way