Lines Matching refs:fixer
37 def add_fixer(self, fixer):
38 """Reduces a fixer's pattern tree to a linear path and adds it
39 to the matcher(a common Aho-Corasick automaton). The fixer is
42 self.fixers.append(fixer)
43 tree = reduce_tree(fixer.pattern_tree)
47 match_node.fixers.append(fixer)
119 for fixer in current_ac_node.fixers:
120 results[fixer].append(current_ast_node)
133 for fixer in current_ac_node.fixers:
134 results[fixer].append(current_ast_node)