(self, node, word)
| 489 | return False |
| 490 | |
| 491 | def visitassignment(self, node, word): |
| 492 | helptext = help_constants.ASSIGNMENT |
| 493 | self.groups[0].results.append( |
| 494 | MatchResult( |
| 495 | node.pos[0], node.pos[1], helptext, None, {"kind": "assignment"} |
| 496 | ) |
| 497 | ) |
| 498 | |
| 499 | def visitword(self, node, word): |
| 500 | def attemptfuzzy(chars): |
nothing calls this directly
no test coverage detected