this repo has no description

Remove old TODO

authored by bernsteinbear.com and committed by

Max Bernstein 04f292fb f81b5c54

-6
-6
compiler.py
··· 432 432 raise NotImplementedError(f"exp {type(exp)} {exp}") 433 433 434 434 435 - # TODO(max): Emit constants into the const heap 436 - # The const heap must only point within the const heap 437 - # The const heap will never be scanned 438 - # The const heap can be serialized to disk and mmap'd 439 - 440 - 441 435 def compile_to_string(source: str, debug: bool) -> str: 442 436 program = parse(tokenize(source)) 443 437