Langium - v4.0.0
    Preparing search index...

    Interface CompositeCstNode

    A composite CST node contains other nodes, but no directly associated token.

    interface CompositeCstNode {
        astNode: AstNode;
        container?: CompositeCstNode;
        content: CstNode[];
        end: number;
        grammarSource?: GrammarAST.AbstractElement;
        hidden: boolean;
        length: number;
        offset: number;
        range: Range;
        root: RootCstNode;
        text: string;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    astNode: AstNode

    The AST node created from this CST node

    container?: CompositeCstNode

    The container node in the CST

    content: CstNode[]
    end: number
    grammarSource?: GrammarAST.AbstractElement

    The grammar element from which this node was parsed

    hidden: boolean

    Whether the token is hidden, i.e. not explicitly part of the containing grammar rule

    length: number
    offset: number
    range: Range

    The root CST node

    text: string

    The actual text