Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pyvex/lifting/post_processor.py: 60%
5 statements
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-25 06:15 +0000
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-25 06:15 +0000
1#
2# The post-processor base class
3#
6class Postprocessor:
7 def __init__(self, irsb):
8 self.irsb = irsb
10 def postprocess(self):
11 """
12 Modify the irsb
14 All of the postprocessors will be used in the order that they are registered
15 """
16 pass