(self, names: list[str], verbose: bool = True)
| 75 | |
| 76 | |
| 77 | def _run(self, names: list[str], verbose: bool = True): |
| 78 | if any ("." in name for name in names): |
| 79 | return "Please check the word again, the word should be identifier only, not `something.something`" |
| 80 | result = search_elements_inside_project(names, self.backend, verbose=verbose, language=self.language) |
| 81 | return result |
| 82 | |
| 83 | |
| 84 | class GoToDefinitionArgs(BaseModel): |
nothing calls this directly
no test coverage detected