Preform preprocess calculations once here after initialization, to avoid performance costs later.
(self)
| 94 | raise NotImplementedError("Subclasses should implement this!") |
| 95 | |
| 96 | def preprocess(self): |
| 97 | """Preform preprocess calculations once here after initialization, to avoid performance costs later.""" |
| 98 | raise NotImplementedError("Subclasses should implement this!") |
| 99 | |
| 100 | class SourceCodeContext(MappedCodeContext): |
| 101 | """A context that describes a source function.""" |
no outgoing calls
no test coverage detected