We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5504f6d commit f561e79Copy full SHA for f561e79
compiler/codegen/src/compile.rs
@@ -491,6 +491,10 @@ impl Compiler<'_> {
491
) -> CompileResult<()> {
492
self.symbol_table_stack.push(symbol_table);
493
494
+ if Self::find_ann(body) {
495
+ emit!(self, Instruction::SetupAnnotation);
496
+ }
497
+
498
if let Some((last, body)) = body.split_last() {
499
for statement in body {
500
if let Stmt::Expr(StmtExpr { value, .. }) = &statement {
0 commit comments