File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
crates/wasmi/src/engine/translator/func2/stack Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -3,24 +3,26 @@ mod locals;
3
3
mod operand;
4
4
mod operands;
5
5
6
+ use self :: {
7
+ control:: ControlStack ,
8
+ locals:: LocalsRegistry ,
9
+ operands:: { OperandStack , StackOperand } ,
10
+ } ;
6
11
pub use self :: {
7
12
control:: {
8
13
BlockControlFrame ,
9
14
ControlFrame ,
10
15
ElseControlFrame ,
16
+ ElseReachability ,
11
17
IfControlFrame ,
18
+ IfReachability ,
12
19
LoopControlFrame ,
13
20
UnreachableControlFrame ,
14
21
} ,
15
22
locals:: LocalIdx ,
16
23
operand:: Operand ,
17
24
operands:: { OperandIdx , PreservedLocalsIter } ,
18
25
} ;
19
- use self :: {
20
- control:: { ControlStack , ElseReachability , IfReachability } ,
21
- locals:: LocalsRegistry ,
22
- operands:: { OperandStack , StackOperand } ,
23
- } ;
24
26
use super :: { Reset , ReusableAllocations } ;
25
27
use crate :: {
26
28
core:: { TypedVal , ValType } ,
You can’t perform that action at this time.
0 commit comments