From fbcbe0215a39363d850695f0f7acef451af292f6 Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Fri, 15 Mar 2024 18:51:44 -0400 Subject: [PATCH] Hide builtins from compilation output --- ir.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ir.py b/ir.py index 9ae5473..371a244 100644 --- a/ir.py +++ b/ir.py @@ -34,6 +34,7 @@ class ReplHole: return '\n'.join( f'const {var_name} = ({var_expr.codegen()});' for (var_name, var_expr) in self.val_bindings + if var_name not in types_.BUILTINS_CONTEXT ) @dataclass(frozen=True)