Micro optimization

This commit is contained in:
Behdad Esfahbod 2014-06-16 20:35:12 -04:00
parent d06ecc6b25
commit d897eb0486

View File

@ -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