Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/pyvex/lifting/post_processor.py: 60%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1# 

2# The post-processor base class 

3# 

4 

5 

6class Postprocessor: 

7 def __init__(self, irsb): 

8 self.irsb = irsb 

9 

10 def postprocess(self): 

11 """ 

12 Modify the irsb 

13 

14 All of the postprocessors will be used in the order that they are registered 

15 """ 

16 pass