Return true if the op pushes a small integer to the stack
(self)
| 91 | return int(self - OP_1 + 1) |
| 92 | |
| 93 | def is_small_int(self): |
| 94 | """Return true if the op pushes a small integer to the stack""" |
| 95 | if 0x51 <= self <= 0x60 or self == 0: |
| 96 | return True |
| 97 | else: |
| 98 | return False |
| 99 | |
| 100 | def __str__(self): |
| 101 | return repr(self) |
no outgoing calls
no test coverage detected