(text)
| 222 | # remove comment at the end of assembly code |
| 223 | @staticmethod |
| 224 | def asm_normalize(text): |
| 225 | text = ' '.join(text.split()) |
| 226 | if text.rfind(';') != -1: |
| 227 | return text[:text.rfind(';')].strip() |
| 228 | |
| 229 | return text.strip() |
| 230 | |
| 231 | @staticmethod |
| 232 | # check if input address is valid |
no outgoing calls
no test coverage detected