(self, atom)
| 386 | return f"_hy_{base}{name}_{self.anon_var_count}" |
| 387 | |
| 388 | def compile_atom(self, atom): |
| 389 | # Compilation methods may mutate the atom, so copy it first. |
| 390 | atom = copy.copy(atom) |
| 391 | return Result() + _model_compilers[type(atom)](self, atom) |
| 392 | |
| 393 | def compile(self, tree): |
| 394 | if tree is None: |