(self)
| 364 | self.accumulator += token.string |
| 365 | |
| 366 | def reset(self) -> None: |
| 367 | self.state = [STATE_INIT] |
| 368 | self.args = [] |
| 369 | self.found = False |
| 370 | self.accumulator = "" |
| 371 | |
| 372 | def get_signatures(self) -> list[FunctionSig]: |
| 373 | """Return sorted copy of the list of signatures found so far.""" |