Skip to content

Commit

Permalink
fix(typescript): getEncodedSemanticClassifications call missing the…
Browse files Browse the repository at this point in the history
… `format` param

fix withastro/language-tools#788
  • Loading branch information
johnsoncodehk committed Feb 13, 2024
1 parent 70021f2 commit b1f03f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typescript/lib/node/decorateLanguageService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export function decorateLanguageService(files: FileRegistry, languageService: ts
return result;
}
else {
return getEncodedSemanticClassifications(fileName, span);
return getEncodedSemanticClassifications(fileName, span, format);
}
};
languageService.getSyntacticDiagnostics = fileName => {
Expand Down

0 comments on commit b1f03f0

Please sign in to comment.