An AST node that marks the presence of an error, for example a syntactic or semantic error in the original tree.

interface ErrorNode {
    message: string;
    position?: Position;
}

Implemented by

Properties

Properties

message: string
position?: Position

Generated using TypeDoc