(typeInfo)
| 91 | return structType; |
| 92 | }; |
| 93 | export function isStructType(typeInfo) { |
| 94 | return !!(typeInfo && typeInfo.properties); |
| 95 | } |
| 96 | export const GenType = { |
| 97 | FLOAT: { baseType: BaseType.FLOAT, dimension: null, priority: 3 }, |
| 98 | INT: { baseType: BaseType.INT, dimension: null, priority: 2 }, |
no outgoing calls
no test coverage detected