(self, start, end)
| 109 | """Base AST node.""" |
| 110 | |
| 111 | def __init__(self, start, end): |
| 112 | self.start = start |
| 113 | self.end = end |
| 114 | |
| 115 | def IsDeclaration(self): |
| 116 | """Returns bool if this node is a declaration.""" |
no outgoing calls
no test coverage detected