Skip to content

Commit b759e92

Browse files
authored
Add missing "as const"
1 parent bbc3dfa commit b759e92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/language/tokenKind.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const TokenKind = {
1010
AMP: '&' as const,
1111
PAREN_L: '(' as const,
1212
PAREN_R: ')' as const,
13-
DOT: '.',
13+
DOT: '.' as const,
1414
SPREAD: '...' as const,
1515
COLON: ':' as const,
1616
TWO_COLON: '::' as const,

0 commit comments

Comments
 (0)