Langium - v4.0.0
    Preparing search index...

    Interface DefaultMultiReference

    interface DefaultMultiReference {
        _items: undefined | MultiReferenceItem<AstNode>[] | typeof RefResolving;
        _linkingError?: LinkingError;
        $refNode?: CstNode;
        $refText: string;
        error?: LinkingError;
        items: MultiReferenceItem<AstNode>[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    _items: undefined | MultiReferenceItem<AstNode>[] | typeof RefResolving
    _linkingError?: LinkingError
    $refNode?: CstNode

    The CST node from which the reference was parsed

    $refText: string

    The actual text used to look up in the surrounding scope

    error?: LinkingError

    If any problem occurred while resolving the reference, it is described by this property.

    The resolved references. Accessing this property may trigger cross-reference resolution by the Linker in case it has not been done yet. If no references can be found, the array is empty (but not undefined) and the error property is set.