Skip to content

Commit deec5a8

Browse files
committed
fix: incude satisfies binary operator
1 parent 2b2f77c commit deec5a8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/states/EXPRESSION.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,13 @@ const unaryKeywords = [
3030
"void",
3131
] as const;
3232

33-
const binaryKeywords = ["instanceof", "in", "as", "extends"] as const;
33+
const binaryKeywords = [
34+
"instanceof",
35+
"in",
36+
"as",
37+
"extends",
38+
"satisfies",
39+
] as const;
3440

3541
export const EXPRESSION: StateDefinition<ExpressionMeta> = {
3642
name: "EXPRESSION",

0 commit comments

Comments
 (0)