(self)
| 54 | |
| 55 | @property |
| 56 | def tokens(self) -> list[lx.Token]: |
| 57 | context = self.context |
| 58 | if not context: |
| 59 | return [] |
| 60 | tokens = context.owner.tokens |
| 61 | begin = context.begin |
| 62 | end = context.end |
| 63 | return tokens[begin:end] |
| 64 | |
| 65 | @property |
| 66 | def first_token(self) -> lx.Token: |
no outgoing calls
no test coverage detected