Skip to content

Commit

Permalink
remove unused BINARY_OP_VALUES
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGeorgii committed Feb 2, 2024
1 parent 7339dfc commit 1003de0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sgp/ast_node_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ class Position:
"""
Contains the cursor position (line and column) in the source code.
"""

def __init__(self, line: int, col: int) -> None:
self.line: int = line
self.column: int = col


class Location:
"""
Contains the location (start line/column & end line/column) of a node in the source code.
Expand Down Expand Up @@ -385,7 +387,7 @@ def __init__(
self,
is_immutable: bool,
override: Optional[List["UserDefinedTypeName"]] = None,
**kwargs
**kwargs,
) -> None:
super().__init__(**kwargs)
self.is_immutable: bool = is_immutable
Expand Down Expand Up @@ -931,9 +933,7 @@ def __init__(self, name: str) -> None:
">>",
"&&",
"||",
",,",
"&",
",",
"^",
"<",
">",
Expand All @@ -942,7 +942,6 @@ def __init__(self, name: str) -> None:
"==",
"!=",
"=",
",=",
"^=",
"&=",
"<<=",
Expand Down

0 comments on commit 1003de0

Please sign in to comment.