├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── read_class.rs ├── classes ├── pick.py └── testing │ └── LookupSwitch.java ├── examples └── read │ ├── .gitignore │ ├── Cargo.toml │ ├── TestClass.java │ ├── build.rs │ └── src │ └── main.rs └── src ├── access.rs ├── ast.rs ├── attributes.rs ├── bin.rs ├── classfile.rs ├── code.rs ├── constantpool.rs ├── error.rs ├── field.rs ├── insnlist.rs ├── lib.rs ├── method.rs ├── types.rs ├── utils.rs └── version.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/read_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/benches/read_class.rs -------------------------------------------------------------------------------- /classes/pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/classes/pick.py -------------------------------------------------------------------------------- /classes/testing/LookupSwitch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/classes/testing/LookupSwitch.java -------------------------------------------------------------------------------- /examples/read/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/examples/read/.gitignore -------------------------------------------------------------------------------- /examples/read/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/examples/read/Cargo.toml -------------------------------------------------------------------------------- /examples/read/TestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/examples/read/TestClass.java -------------------------------------------------------------------------------- /examples/read/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/examples/read/build.rs -------------------------------------------------------------------------------- /examples/read/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/examples/read/src/main.rs -------------------------------------------------------------------------------- /src/access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/access.rs -------------------------------------------------------------------------------- /src/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/ast.rs -------------------------------------------------------------------------------- /src/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/attributes.rs -------------------------------------------------------------------------------- /src/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/bin.rs -------------------------------------------------------------------------------- /src/classfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/classfile.rs -------------------------------------------------------------------------------- /src/code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/code.rs -------------------------------------------------------------------------------- /src/constantpool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/constantpool.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/field.rs -------------------------------------------------------------------------------- /src/insnlist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/insnlist.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/method.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/types.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x4e/classfile-rs/HEAD/src/version.rs --------------------------------------------------------------------------------