@@ -14,7 +14,7 @@ export const SUPPORTED_REF_TYPES = {
14
14
return wasmExports . __instanceof ( ref , wasmExports . __asbind_String_ID ) ;
15
15
} ,
16
16
getRef : ( wasmExports , arg ) => {
17
- return wasmExports . __retain ( wasmExports . __allocString ( arg ) ) ;
17
+ return wasmExports . __retain ( wasmExports . __newString ( arg ) ) ;
18
18
} ,
19
19
getValueFromRef : ( wasmExports , responseRef ) => {
20
20
return wasmExports . __getString ( responseRef ) ;
@@ -29,7 +29,7 @@ export const SUPPORTED_REF_TYPES = {
29
29
} ,
30
30
getRef : ( wasmExports , arg ) => {
31
31
return wasmExports . __retain (
32
- wasmExports . __allocArray ( wasmExports . __asbind_Int8Array_ID , arg )
32
+ wasmExports . __newArray ( wasmExports . __asbind_Int8Array_ID , arg )
33
33
) ;
34
34
} ,
35
35
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -51,7 +51,7 @@ export const SUPPORTED_REF_TYPES = {
51
51
} ,
52
52
getRef : ( wasmExports , arg ) => {
53
53
return wasmExports . __retain (
54
- wasmExports . __allocArray ( wasmExports . __asbind_Uint8Array_ID , arg )
54
+ wasmExports . __newArray ( wasmExports . __asbind_Uint8Array_ID , arg )
55
55
) ;
56
56
} ,
57
57
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -73,7 +73,7 @@ export const SUPPORTED_REF_TYPES = {
73
73
} ,
74
74
getRef : ( wasmExports , arg ) => {
75
75
return wasmExports . __retain (
76
- wasmExports . __allocArray ( wasmExports . __asbind_Int16Array_ID , arg )
76
+ wasmExports . __newArray ( wasmExports . __asbind_Int16Array_ID , arg )
77
77
) ;
78
78
} ,
79
79
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -95,7 +95,7 @@ export const SUPPORTED_REF_TYPES = {
95
95
} ,
96
96
getRef : ( wasmExports , arg ) => {
97
97
return wasmExports . __retain (
98
- wasmExports . __allocArray ( wasmExports . __asbind_Uint16Array_ID , arg )
98
+ wasmExports . __newArray ( wasmExports . __asbind_Uint16Array_ID , arg )
99
99
) ;
100
100
} ,
101
101
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -117,7 +117,7 @@ export const SUPPORTED_REF_TYPES = {
117
117
} ,
118
118
getRef : ( wasmExports , arg ) => {
119
119
return wasmExports . __retain (
120
- wasmExports . __allocArray ( wasmExports . __asbind_Int32Array_ID , arg )
120
+ wasmExports . __newArray ( wasmExports . __asbind_Int32Array_ID , arg )
121
121
) ;
122
122
} ,
123
123
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -139,7 +139,7 @@ export const SUPPORTED_REF_TYPES = {
139
139
} ,
140
140
getRef : ( wasmExports , arg ) => {
141
141
return wasmExports . __retain (
142
- wasmExports . __allocArray ( wasmExports . __asbind_Uint32Array_ID , arg )
142
+ wasmExports . __newArray ( wasmExports . __asbind_Uint32Array_ID , arg )
143
143
) ;
144
144
} ,
145
145
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -164,7 +164,7 @@ export const SUPPORTED_REF_TYPES = {
164
164
} ,
165
165
getRef : ( wasmExports , arg ) => {
166
166
return wasmExports . __retain (
167
- wasmExports . __allocArray ( wasmExports . __asbind_Float32Array_ID , arg )
167
+ wasmExports . __newArray ( wasmExports . __asbind_Float32Array_ID , arg )
168
168
) ;
169
169
} ,
170
170
getValueFromRef : ( wasmExports , responseRef ) => {
@@ -189,7 +189,7 @@ export const SUPPORTED_REF_TYPES = {
189
189
} ,
190
190
getRef : ( wasmExports , arg ) => {
191
191
return wasmExports . __retain (
192
- wasmExports . __allocArray ( wasmExports . __asbind_Float64Array_ID , arg )
192
+ wasmExports . __newArray ( wasmExports . __asbind_Float64Array_ID , arg )
193
193
) ;
194
194
} ,
195
195
getValueFromRef : ( wasmExports , responseRef ) => {
0 commit comments