fixed clippy lints

This commit is contained in:
nora 2021-08-23 12:43:56 +02:00
parent 5ec9260b59
commit 2460ab4637
8 changed files with 95 additions and 55 deletions

View file

@ -0,0 +1,23 @@
#![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>),
}