This commit is contained in:
Erin 2022-09-19 20:27:16 +02:00 committed by ondra05
parent 33e1904e7f
commit dd2c58bfcf
2 changed files with 3 additions and 3 deletions

View file

@ -20,8 +20,8 @@ pub enum Instruction {
/// Store a value to locals table /// Store a value to locals table
StLocal(usize), StLocal(usize),
/// Pop a value from stack /// Drop a value from stack
Pop, Drop,
/// Duplicate value on stack /// Duplicate value on stack
Dup, Dup,

View file

@ -105,7 +105,7 @@ impl<'s> Context<'s> {
StLocal(i) => { StLocal(i) => {
*self.locals.get_mut(i).ok_or(IndexOutOfBoundsError::Local)? = self.stack_pop()?; *self.locals.get_mut(i).ok_or(IndexOutOfBoundsError::Local)? = self.stack_pop()?;
} }
Pop => { Drop => {
self.stack_pop()?; self.stack_pop()?;
} }
Dup => { Dup => {