Added array type
This commit is contained in:
@ -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]
|
||||
|
Reference in New Issue
Block a user