Keep optype info in token...

It is useful for ADD_VALUE
This commit is contained in:
rocky
2024-02-24 17:41:32 -05:00
parent d2a171609e
commit 8a1fd7e127
10 changed files with 42 additions and 21 deletions

View File

@@ -355,6 +355,7 @@ class Scanner37Base(Scanner):
has_arg=True,
opc=self.opc,
has_extended_arg=False,
optype=inst.optype,
),
)
jump_idx += 1
@@ -426,6 +427,7 @@ class Scanner37Base(Scanner):
has_arg=inst.has_arg,
opc=self.opc,
has_extended_arg=inst.has_extended_arg,
optype=inst.optype,
),
)
continue
@@ -527,6 +529,7 @@ class Scanner37Base(Scanner):
has_arg=inst.has_arg,
opc=self.opc,
has_extended_arg=inst.has_extended_arg,
optype=inst.optype,
),
)
pass