Micro optimization
This commit is contained in:
parent
d06ecc6b25
commit
d897eb0486
@ -522,8 +522,8 @@ class SimpleT2Decompiler(object):
|
|||||||
pushToProgram(token)
|
pushToProgram(token)
|
||||||
if isOperator:
|
if isOperator:
|
||||||
handlerName = "op_" + token
|
handlerName = "op_" + token
|
||||||
if hasattr(self, handlerName):
|
handler = getattr(self, handlerName, None)
|
||||||
handler = getattr(self, handlerName)
|
if handler is not None:
|
||||||
rv = handler(index)
|
rv = handler(index)
|
||||||
if rv:
|
if rv:
|
||||||
hintMaskBytes, index = rv
|
hintMaskBytes, index = rv
|
||||||
|
Loading…
x
Reference in New Issue
Block a user