Skip to content

Commit 3e68b15

Browse files
ortasandersn
andcommitted
Update src/harness/fourslashImpl.ts
Co-authored-by: Nathan Shively-Sanders <[email protected]>
1 parent 06077bf commit 3e68b15

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/harness/fourslashImpl.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2487,8 +2487,7 @@ namespace FourSlash {
24872487
const typeIdx = getTokenTypeFromClassification(classification) || 0;
24882488
const modSet = getTokenModifierFromClassification(classification);
24892489

2490-
const tokenClassifiction = [tokenTypes[typeIdx], ...tokenModifiers.filter((_, i) => modSet & 1 << i)].join(".");
2491-
return tokenClassifiction;
2490+
return [tokenTypes[typeIdx], ...tokenModifiers.filter((_, i) => modSet & 1 << i)].join(".");
24922491
}
24932492

24942493
private verifyClassifications(expected: { classificationType: string | number, text?: string; textSpan?: TextSpan }[], actual: ts.ClassifiedSpan[], sourceFileText: string) {

0 commit comments

Comments
 (0)