Skip to content

Commit 5e3e930

Browse files
committed
rename ValueStack -> Stack
1 parent 8000c81 commit 5e3e930

File tree

1 file changed

+1
-1
lines changed
  • crates/wasmi/src/engine/translator/stack2

1 file changed

+1
-1
lines changed

crates/wasmi/src/engine/translator/stack2/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ use alloc::vec::Vec;
77
use core::num::NonZeroUsize;
88

99
#[derive(Debug, Clone)]
10-
pub struct ValueStack {
1110
/// The Wasm value stack during translation from Wasm to Wasmi bytecode.
11+
pub struct Stack {
1212
/// The stack of operands.
1313
operands: Vec<StackOperand>,
1414
/// All function local constants.

0 commit comments

Comments
 (0)