Langium - v4.0.0
    Preparing search index...

    Interface TypeMetaData

    Represents runtime meta data about an AST node type.

    interface TypeMetaData {
        name: string;
        properties: { [name: string]: PropertyMetaData };
        superTypes: string[];
    }
    Index

    Properties

    name: string

    The name of this AST node type. Corresponds to the AstNode.$type value.

    properties: { [name: string]: PropertyMetaData }

    A list of properties with their relevant meta data.

    superTypes: string[]

    The super types of this AST node type.