Skip to content

Commit

Permalink
Update operators.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rimuy authored Feb 7, 2024
1 parent eb0217d commit c1e3bbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LuauAST/types/operators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export type BinaryOperator =
| "-"
| "*"
| "/"
| "//"
| "^"
| "%"
| ".."
Expand All @@ -17,4 +18,4 @@ export type BinaryOperator =

export type UnaryOperator = "-" | "not" | "#";

export type AssignmentOperator = "=" | "+=" | "-=" | "*=" | "/=" | "%=" | "^=" | "..=";
export type AssignmentOperator = "=" | "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "^=" | "..=";

0 comments on commit c1e3bbf

Please sign in to comment.