pclass_parser/classfile/
types.rs

1use crate::classfile::constant_pool;
2use std::sync::Arc;
3
4pub type U1 = u8;
5pub type U2 = u16;
6pub type U4 = u32;
7pub type BytesRef = Arc<Vec<u8>>;
8pub type ConstantPool = Arc<Vec<constant_pool::Type>>;