FerroBabe 0.1.1

A lightweight Rust library for disassembling Java class files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod class;
mod constant;
mod instruction;
mod member;

pub use class::{Class, ClassVersion, Disassembly};
pub use constant::{ConstantPoolIndex, ConstantRef};
pub use instruction::{
    ByteOffset, Instruction, InstructionOperand, LdcValueRef, MemberReference, SwitchTarget,
};
pub use member::{ExceptionHandler, Field, Method};