Return true if the op pushes a small integer to the stack
(self)
| 72 | return int(self - OP_1+1) |
| 73 | |
| 74 | def is_small_int(self): |
| 75 | """Return true if the op pushes a small integer to the stack""" |
| 76 | if 0x51 <= self <= 0x60 or self == 0: |
| 77 | return True |
| 78 | else: |
| 79 | return False |
| 80 | |
| 81 | def __str__(self): |
| 82 | return repr(self) |
no outgoing calls
no test coverage detected