Improved type system

This commit is contained in:
2025-02-17 14:31:47 +01:00
parent 3550f9e24e
commit b8e37fafae
62 changed files with 189 additions and 172 deletions

View File

@ -29,28 +29,36 @@ func ByName(name string, pkg string, structs map[string]*Struct) Type {
}
switch name {
case "Any":
return Any
case "Bool":
return Bool
case "Int":
case "int":
return Int
case "Int64":
case "int64":
return Int64
case "Int32":
case "int32":
return Int32
case "Int16":
case "int16":
return Int16
case "Int8":
case "int8":
return Int8
case "Float":
return Float
case "Float64":
return Float64
case "Float32":
return Float32
case "UInt":
case "uint":
return UInt
case "uint64":
return UInt64
case "uint32":
return UInt32
case "uint16":
return UInt16
case "uint8":
return UInt8
case "float":
return Float
case "float64":
return Float64
case "float32":
return Float32
case "bool":
return Bool
case "any":
return Any
}
typ, exists := structs[pkg+"."+name]