mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
Move wasm file format code into a submodule
This commit is contained in:
parent
7fa6436ee6
commit
ad9b761fce
10 changed files with 45 additions and 50 deletions
12
compiler/gen_wasm/src/wasm_module/mod.rs
Normal file
12
compiler/gen_wasm/src/wasm_module/mod.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
pub mod code_builder;
|
||||
pub mod opcodes;
|
||||
pub mod sections;
|
||||
pub mod serialize;
|
||||
|
||||
pub use code_builder::{
|
||||
Align, BlockType, CodeBuilder, LocalId, ValueType, VirtualMachineSymbolState,
|
||||
};
|
||||
pub use sections::{
|
||||
Export, ExportType, Global, GlobalInitValue, GlobalType, LinkingSubSection, Signature, SymInfo,
|
||||
WasmModule,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue