| 199 | |
| 200 | |
| 201 | class SourceWalkerError(Exception): |
| 202 | def __init__(self, errmsg): |
| 203 | self.errmsg = errmsg |
| 204 | |
| 205 | def __str__(self): |
| 206 | return self.errmsg |
| 207 | |
| 208 | |
| 209 | class SourceWalker(GenericASTTraversal, NonterminalActions, ComprehensionMixin): |
no outgoing calls
no test coverage detected