(type_index uint32)
| 190 | } |
| 191 | |
| 192 | func GetArgType(type_index uint32) IArgType { |
| 193 | p, ok := arg_types[type_index] |
| 194 | if !ok { |
| 195 | panic(fmt.Sprintf("GetArgType for type_index:%d failed", type_index)) |
| 196 | } |
| 197 | return p |
| 198 | } |
| 199 | |
| 200 | func GetArgTypeByName(name string) IArgType { |
| 201 | for _, arg_type := range arg_types { |
no outgoing calls
no test coverage detected