Added array type

This commit is contained in:
2025-02-09 20:25:37 +01:00
parent c69f1aab5c
commit 7634244c56
13 changed files with 71 additions and 22 deletions

View File

@ -17,6 +17,17 @@ func ByName(name string, pkg string, structs map[string]*Struct) Type {
return nil
}
if strings.HasPrefix(name, "[]") {
to := strings.TrimPrefix(name, "[]")
typ := ByName(to, pkg, structs)
if typ != nil {
return &Array{Of: typ}
}
return nil
}
switch name {
case "Int":
return Int
@ -35,7 +46,7 @@ func ByName(name string, pkg string, structs map[string]*Struct) Type {
case "Float32":
return Float32
case "Pointer":
return PointerAny
return AnyPointer
}
typ, exists := structs[pkg+"."+name]