Interface LinkingError

Used to collect information when the Linker service fails to resolve a cross-reference.

interface LinkingError {
    container: AstNode;
    index?: number;
    message: string;
    property: string;
    reference: Reference<AstNode>;
    targetDescription?: AstNodeDescription;
}

Hierarchy (view full)

Properties

container: AstNode
index?: number
message: string
property: string
reference: Reference<AstNode>
targetDescription?: AstNodeDescription