Skip to content

Commit

Permalink
Package lock file update
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Lischke <[email protected]>
  • Loading branch information
mike-lischke committed Nov 25, 2023
1 parent 9bb3cb1 commit 327c325
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/backend/SourceContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,9 @@ export class SourceContext {
`Error while reading lexer interpreter data (${lexerInterpreterDataFile}): ${String(error)}\n`;
}
} else {
Log.debug(`No lexer interpreter data found at ${lexerInterpreterDataFile}`);
if (lexerInterpreterDataFile.length > 0) {
Log.debug(`No lexer interpreter data found at ${lexerInterpreterDataFile}`);
}

this.grammarLexerData = undefined;
this.grammarLexerRuleMap.clear();
Expand Down

0 comments on commit 327c325

Please sign in to comment.