MCPcopy
hub / github.com/hylang/hy / compile_atom

Method compile_atom

hy/compiler.py:388–391  ·  view source on GitHub ↗
(self, atom)

Source from the content-addressed store, hash-verified

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:

Callers 2

compileMethod · 0.95

Calls 1

ResultClass · 0.85

Tested by 1