Skip to content

Commit b5b452d

Browse files
committed
reorder exports
1 parent bff8a63 commit b5b452d

File tree

1 file changed

+7
-5
lines changed
  • crates/wasmi/src/engine/translator/func2/stack

1 file changed

+7
-5
lines changed

crates/wasmi/src/engine/translator/func2/stack/mod.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,26 @@ mod locals;
33
mod operand;
44
mod operands;
55

6+
use self::{
7+
control::ControlStack,
8+
locals::LocalsRegistry,
9+
operands::{OperandStack, StackOperand},
10+
};
611
pub use self::{
712
control::{
813
BlockControlFrame,
914
ControlFrame,
1015
ElseControlFrame,
16+
ElseReachability,
1117
IfControlFrame,
18+
IfReachability,
1219
LoopControlFrame,
1320
UnreachableControlFrame,
1421
},
1522
locals::LocalIdx,
1623
operand::Operand,
1724
operands::{OperandIdx, PreservedLocalsIter},
1825
};
19-
use self::{
20-
control::{ControlStack, ElseReachability, IfReachability},
21-
locals::LocalsRegistry,
22-
operands::{OperandStack, StackOperand},
23-
};
2426
use super::{Reset, ReusableAllocations};
2527
use crate::{
2628
core::{TypedVal, ValType},

0 commit comments

Comments
 (0)