Skip to content

Commit

Permalink
#11 Testing linter
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoFernandes1410 committed Nov 20, 2022
1 parent 91f2d02 commit 3faad3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/semantics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class SemanticTokensProvider {
}

tokenize(document: TextDocument) {
const tokens: VSCodeToken[] = [];
var tokens: VSCodeToken[] = [];
const antlrTokens = tokenize(document.getText());
antlrTokens.forEach(tk => {
const vscodeTokenType = this.tokenTypeMap.get(antlrTypeNumToString(tk.type));
Expand Down

0 comments on commit 3faad3f

Please sign in to comment.