mirror of
https://github.com/Noratrieb/coldsquare.git
synced 2026-01-15 17:05:09 +01:00
fixed clippy lints
This commit is contained in:
parent
5ec9260b59
commit
2460ab4637
8 changed files with 95 additions and 55 deletions
23
crates/class-struct/src/lib.rs
Normal file
23
crates/class-struct/src/lib.rs
Normal 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>),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue