(typeName: TypeName)
| 167 | } |
| 168 | |
| 169 | convertFieldType(typeName: TypeName): AbiType { |
| 170 | return convertFieldType(typeName, this.structs, this.enums) |
| 171 | } |
| 172 | |
| 173 | putStruct(namePath: string, struct: AbiStruct) { |
| 174 | this.structs[namePath] = struct; |
no test coverage detected