(self, line)
| 90 | self.all_tokens = set() |
| 91 | |
| 92 | def get_line(self, line): |
| 93 | lst = self.line_to_contents.get(line) |
| 94 | if lst is None: |
| 95 | lst = self.line_to_contents[line] = [] |
| 96 | return lst |
| 97 | |
| 98 | def indent(self, line): |
| 99 | self.get_line(line).append(INDENT_MARKER) |
no test coverage detected