(self, tokens: Tokens)
| 68 | yield line |
| 69 | |
| 70 | def _interpret(self, tokens: Tokens) -> Lines: |
| 71 | if self.commandset == "default": |
| 72 | yield from self._interpret_default(tokens) |
| 73 | else: |
| 74 | raise ValueError(f"commandset '{self.commandset}' unsupported") |
| 75 | |
| 76 | def _flush_active_line(self) -> LineString: |
| 77 | if not self.active_line or not self.drawing: |
no test coverage detected