* Load the type key from the type info pointer. * @param typeInfoPtr The pointer to the type info. * @returns The type key.
(typeInfoPtr: Pointer)
| 184 | * @returns The type key. |
| 185 | */ |
| 186 | loadTypeInfoTypeKey(typeInfoPtr: Pointer): string { |
| 187 | const typeKeyPtr = typeInfoPtr + 2 * SizeOf.I32; |
| 188 | return this.loadByteArrayAsString(typeKeyPtr); |
| 189 | } |
| 190 | /** |
| 191 | * Load small string from value pointer. |
| 192 | * @param ffiAnyPtr The pointer to the value. |
no test coverage detected