We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7aef39 commit 11fc771Copy full SHA for 11fc771
1 file changed
src/symbols/id_/ref/varref.py
@@ -18,7 +18,7 @@ class VarRef(SymbolRef):
18
19
def __init__(self, parent: SymbolID, default_value: Symbol | None = None):
20
super().__init__(parent)
21
- self.default_value = default_value # If defined, it be initialized with this value (Arrays = List of Bytes)
+ self.default_value = default_value # If defined, it is initialized with this value (Arrays = List of Bytes)
22
self.offset: str | None = None # If local variable or parameter, +/- offset from top of the stack
23
self.byref = False
24
self.alias = None # If not None, this var is an alias of another
0 commit comments