cm-tarnation
Version:
An alternative parser for CodeMirror 6
19 lines (18 loc) • 500 B
TypeScript
export declare enum Nesting {
/** Special value which indicates that a nested region should be ended. */
POP = 0
}
export declare enum Wrapping {
/** The {@link Node} in this match contains the entirety of the branch. */
FULL = 0,
/** The {@link Node} in this match begins the branch. */
BEGIN = 1,
/** The {@link Node} in this match ends the branch. */
END = 2
}
export declare enum NodeID {
NONE = 0,
TOP = 1,
ERROR = 2,
SAFE = 3
}