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