Passing all tests i guess

This commit is contained in:
2017-06-06 14:19:35 +02:00
commit 1b3c582ee2
13 changed files with 699 additions and 0 deletions

10
src/ijvm/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
pub mod ijvmreader;
pub mod binread;
pub mod block;
pub mod ops;
pub mod machine;
pub mod stack;
pub mod pool;
pub mod frame;
type Result<T> = ::std::result::Result<T, &'static str>;