mirror of
https://github.com/angr/pyvex
synced 2026-06-21 13:47:01 +00:00
23503e7919
* Use black * Fix the lint error
17 lines
289 B
Python
17 lines
289 B
Python
#
|
|
# The post-processor base class
|
|
#
|
|
|
|
|
|
class Postprocessor:
|
|
def __init__(self, irsb):
|
|
self.irsb = irsb
|
|
|
|
def postprocess(self):
|
|
"""
|
|
Modify the irsb
|
|
|
|
All of the postprocessors will be used in the order that they are registered
|
|
"""
|
|
pass
|