diff --git a/src/states/EXPRESSION.ts b/src/states/EXPRESSION.ts index 5347968..399ecc2 100644 --- a/src/states/EXPRESSION.ts +++ b/src/states/EXPRESSION.ts @@ -30,7 +30,13 @@ const unaryKeywords = [ "void", ] as const; -const binaryKeywords = ["instanceof", "in", "as", "extends"] as const; +const binaryKeywords = [ + "instanceof", + "in", + "as", + "extends", + "satisfies", +] as const; export const EXPRESSION: StateDefinition = { name: "EXPRESSION",