refactor: suffice with processCursor at parseLine

processCursor will be executed within parseLine method, precisely it will be executed at the beginning of each parseLine call.
This commit is contained in:
kotaindah55 2025-02-03 22:57:47 +02:00
parent 78cbdfcdaa
commit 0e656fef28

View file

@ -37,7 +37,6 @@ export class Parser {
Tokenizer.colorTag(state);
}
state.resolveContext();
state.processCursor();
do { this.parseLine() } while (state.nextLine())
this.queue.clear();
this.removeState();