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

    Interface RAstNodeBase<Info, LexemeType>

    Provides the common base of all RNodes.

    interface RAstNodeBase<Info, LexemeType = string> {
        info: Info & Source;
        lexeme: LexemeType;
        type: RType;
        [key: string]: unknown;
    }

    Type Parameters

    • Info

      can be used to store additional information about the node

    • LexemeType = string

      the type of the lexeme, probably always a string or string | undefined

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of RAstNodeBase
    Index

    Properties

    Properties

    info: Info & Source

    allows to attach additional information to the node

    lexeme: LexemeType

    the original string retrieved from R, can be used for further identification

    type: RType