-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathrename.js
130 lines (112 loc) · 3.45 KB
/
rename.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
let wasm;
export function __wbg_set_wasm(val) {
wasm = val;
}
function notDefined(what) { return () => { throw new Error(`${what} is not defined`); }; }
const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder;
let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true });
cachedTextDecoder.decode();
let cachedUint8ArrayMemory0 = null;
function getUint8ArrayMemory0() {
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
}
return cachedUint8ArrayMemory0;
}
function getStringFromWasm0(ptr, len) {
ptr = ptr >>> 0;
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
}
/**
* @param {number} a
* @returns {number}
*/
export function export_from_rust(a) {
const ret = wasm.export_from_rust(a);
return ret >>> 0;
}
function isLikeNone(x) {
return x === undefined || x === null;
}
const RustStructFinalization = (typeof FinalizationRegistry === 'undefined')
? { register: () => {}, unregister: () => {} }
: new FinalizationRegistry(ptr => wasm.__wbg_ruststruct_free(ptr >>> 0, 1));
export class RustStruct {
__destroy_into_raw() {
const ptr = this.__wbg_ptr;
this.__wbg_ptr = 0;
RustStructFinalization.unregister(this);
return ptr;
}
free() {
const ptr = this.__destroy_into_raw();
wasm.__wbg_ruststruct_free(ptr, 0);
}
/**
* @returns {number}
*/
get foo() {
const ret = wasm.__wbg_get_ruststruct_foo(this.__wbg_ptr);
return ret >>> 0;
}
/**
* @param {number} arg0
*/
set foo(arg0) {
wasm.__wbg_set_ruststruct_foo(this.__wbg_ptr, arg0);
}
/**
* @returns {number}
*/
get someCoolField() {
const ret = wasm.__wbg_get_ruststruct_someCoolField(this.__wbg_ptr);
return ret >>> 0;
}
/**
* @param {number} arg0
*/
set someCoolField(arg0) {
wasm.__wbg_set_ruststruct_someCoolField(this.__wbg_ptr, arg0);
}
/**
* @returns {number}
*/
get another_field_for_you() {
const ret = wasm.__wbg_get_ruststruct_another_field_for_you(this.__wbg_ptr);
return ret >>> 0;
}
/**
* @param {number} arg0
*/
set another_field_for_you(arg0) {
wasm.__wbg_set_ruststruct_another_field_for_you(this.__wbg_ptr, arg0);
}
static i_dont_get_renamed() {
wasm.ruststruct_i_dont_get_renamed();
}
/**
* @param {number | undefined} [amount]
*/
incrementFoo(amount) {
wasm.ruststruct_incrementFoo(this.__wbg_ptr, isLikeNone(amount) ? 0x100000001 : (amount) >>> 0);
}
/**
* @param {number} foo
*/
setFoo(foo) {
wasm.ruststruct_setFoo(this.__wbg_ptr, foo);
}
/**
* @returns {number}
*/
get_another() {
const ret = wasm.ruststruct_get_another(this.__wbg_ptr);
return ret >>> 0;
}
}
export const __wbg_foobar_aa5072d28246f9cb = typeof foo_bar == 'function' ? foo_bar : notDefined('foo_bar');
export const __wbg_quxCorge_d8ec2d56c00b013f = typeof quxCorge == 'function' ? quxCorge : notDefined('quxCorge');
export const __wbg_yesNo_1feba4b061143a4c = typeof Baz.yesNo == 'function' ? Baz.yesNo : notDefined('Baz.yesNo');
export function __wbindgen_throw(arg0, arg1) {
throw new Error(getStringFromWasm0(arg0, arg1));
};