(self)
| 72 | self.mark.set(self.position) |
| 73 | |
| 74 | def get_marked(self) -> Original: |
| 75 | return Original( |
| 76 | string=self.string[self.mark.chars:self.position.chars], |
| 77 | line=self.mark.line, |
| 78 | ) |
| 79 | |
| 80 | def peek(self, count: int) -> str: |
| 81 | return self.string[self.position.chars:self.position.chars + count] |
no test coverage detected