| 52 | self.tags = tags |
| 53 | |
| 54 | class DocumentEndEvent(Event): |
| 55 | def __init__(self, start_mark=None, end_mark=None, |
| 56 | explicit=None): |
| 57 | self.start_mark = start_mark |
| 58 | self.end_mark = end_mark |
| 59 | self.explicit = explicit |
| 60 | |
| 61 | class AliasEvent(NodeEvent): |
| 62 | pass |
no outgoing calls
no test coverage detected