Parse the location of definitions from the code.
(self)
| 621 | self.overloads = picker.overloads |
| 622 | |
| 623 | def parse_definition(self) -> None: |
| 624 | """Parse the location of definitions from the code.""" |
| 625 | parser = DefinitionFinder(self.code.splitlines(True)) |
| 626 | parser.parse() |
| 627 | self.definitions = parser.definitions |
no test coverage detected