| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -547,10 +547,6 @@ impl<'a, 'b> FunctionCompiler<'a, 'b> { | |||
| 547 | 547 | } | |
| 548 | 548 | } | |
| 549 | 549 | Instruction::Nop => Ok(()), | |
| 550 | - Instruction::Pop => { | ||
| 551 | - self.stack.pop(); | ||
| 552 | - Ok(()) | ||
| 553 | - } | ||
| 554 | 550 | Instruction::PopBlock => { | |
| 555 | 551 | // TODO: block support | |
| 556 | 552 | Ok(()) | |
@@ -581,6 +577,10 @@ impl<'a, 'b> FunctionCompiler<'a, 'b> { | |||
| 581 | 577 | ||
| 582 | 578 | Ok(()) | |
| 583 | 579 | } | |
| 580 | + Instruction::PopTop => { | ||
| 581 | + self.stack.pop(); | ||
| 582 | + Ok(()) | ||
| 583 | + } | ||
| 584 | 584 | Instruction::Resume { arg: _resume_arg } => { | |
| 585 | 585 | // TODO: Implement the resume instruction | |
| 586 | 586 | Ok(()) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments