coldsquare/crates/class-struct/src/lib.rs
2021-08-23 12:43:56 +02:00

23 lines
292 B
Rust

#![allow(dead_code)]
struct MethodSignature {
args: Vec<Type>,
return_t: Type,
}
/// A Java type, found in signatures
enum Type {
/// V
Void,
/// B
Boolean,
Byte,
Short,
Int,
Long,
Float,
Double,
Object,
/// [
Array(Box<Type>),
}