Skip to content

Commit

Permalink
fix: incude satisfies binary operator
Browse files Browse the repository at this point in the history
  • Loading branch information
LuLaValva committed Nov 27, 2024
1 parent 2b2f77c commit deec5a8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/states/EXPRESSION.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<ExpressionMeta> = {
name: "EXPRESSION",
Expand Down

0 comments on commit deec5a8

Please sign in to comment.