| 7 | |
| 8 | |
| 9 | class AbpProcessor(LineTransformProcessor): |
| 10 | |
| 11 | def __init__(self): |
| 12 | super(AbpProcessor, self).__init__() |
| 13 | self.is_bundleable = True |
| 14 | self.code_map = { |
| 15 | re.compile("[^;(]*[mM]106"): self._transform_m106, |
| 16 | re.compile("[^;(]*[mM]107"): self._transform_m107, |
| 17 | } |
| 18 | |
| 19 | def _transform_m107(self, match): |
| 20 | return "" |
| 21 | |
| 22 | def _transform_m106(self, match): |
| 23 | return "" |