fix(flink): clear useless comments

This commit is contained in:
Erindcl
2020-12-14 11:48:08 +08:00
parent 3054e90917
commit 771b562c78
2 changed files with 0 additions and 17 deletions

View File

@ -37,21 +37,14 @@ function lexer(input: string): Token[] {
*/
// eslint-disable-next-line
const matchQuotation = (currentChar: string, validator: RegExp, TokenType: TokenType) => {
// let value = '';
// let start = current;
// let startLine = line;
do {
if (currentChar === '\n') {
line++;
}
// value += currentChar;
currentChar = input[++current];
} while (!validator.test(currentChar));
// value += currentChar;
++current;
// console.log(TokenType, value, start, startLine, current)
};
while (current < input.length) {