Took out name attribute from operand parent class

This commit is contained in:
stefandesouza
2024-02-24 15:46:04 +01:00
parent d7768e5a8a
commit 6ce910e779
13 changed files with 72 additions and 38 deletions

View File

@@ -13,7 +13,7 @@ class ImmediateOperand(Operand):
source=False,
destination=False,
):
super().__init__(str(value_id), source, destination)
super().__init__(source, destination)
self._identifier_id = identifier_id
self._type_id = type_id
self._value_id = value_id