removed some cruft
This commit is contained in:
parent
be760cf209
commit
739ea7da3e
1 changed files with 1 additions and 11 deletions
12
src/types.rs
12
src/types.rs
|
|
@ -17,26 +17,16 @@ pub struct Class {
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum CpEntry {
|
pub enum CpEntry {
|
||||||
Utf8(String),
|
Utf8(String),
|
||||||
//1
|
|
||||||
Integer(i32),
|
Integer(i32),
|
||||||
//3
|
|
||||||
Float(f32),
|
Float(f32),
|
||||||
//4
|
|
||||||
Long(i64),
|
Long(i64),
|
||||||
//5
|
|
||||||
Double(f64),
|
Double(f64),
|
||||||
//6
|
|
||||||
Class(u16),
|
Class(u16),
|
||||||
//7
|
|
||||||
String(u16),
|
String(u16),
|
||||||
//8
|
|
||||||
Fieldref(u16, u16),
|
Fieldref(u16, u16),
|
||||||
//9
|
|
||||||
MethodRef(u16, u16),
|
MethodRef(u16, u16),
|
||||||
//10
|
|
||||||
InterfaceMethodref(u16, u16),
|
InterfaceMethodref(u16, u16),
|
||||||
//11
|
NameAndType(u16, u16),
|
||||||
NameAndType(u16, u16), //12
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue