The state of the tokenizer between two lines. It is useful to store flags such as in multiline comment, etc. The model will clone the previous line's state and pass it in to tokenize the next line.

interface IState {
    clone(): IState;
    equals(other): boolean;
}

Methods

Methods

  • Returns IState

  • Parameters

    Returns boolean