Skip to content

Commit

Permalink
make the compiler module public
Browse files Browse the repository at this point in the history
  • Loading branch information
bjcscat committed Dec 7, 2024
1 parent abf5514 commit 2915ad2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ impl Compiler {
}
}
}

pub struct CompilerResult {
bytecode: *const i8,
len: usize,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#[cfg(feature = "compiler")]
mod compile;
pub mod compile;

mod ffi;
mod memory;
Expand Down

0 comments on commit 2915ad2

Please sign in to comment.