cargo fmt
This commit is contained in:
@@ -3178,11 +3178,9 @@ impl<'this, M: ModuleContext> Context<'this, M> {
|
|||||||
fn pop(&mut self) -> Result<ValueLocation, Error> {
|
fn pop(&mut self) -> Result<ValueLocation, Error> {
|
||||||
match self.block_state.stack.pop() {
|
match self.block_state.stack.pop() {
|
||||||
Some(v) => Ok(v),
|
Some(v) => Ok(v),
|
||||||
None => {
|
None => Err(Error::Microwasm(
|
||||||
Err(Error::Microwasm(
|
|
||||||
"Stack is empty - pop impossible".to_string(),
|
"Stack is empty - pop impossible".to_string(),
|
||||||
))
|
)),
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user