diff --git a/src/compile.rs b/src/compile.rs index bceee87..e602159 100644 --- a/src/compile.rs +++ b/src/compile.rs @@ -189,7 +189,8 @@ impl Compiler { } fn push_output(&mut self, mut code: CodeObject) { - code.incognito = self.opts.incognito; + code.flags + .set(bytecode::CodeFlags::INCOGNITO, self.opts.incognito); self.output_stack.push(code.into()); }