@pydantic/logfire-sqlls 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/logfire_sqlls_wasm.d.ts +53 -3
- package/logfire_sqlls_wasm.js +285 -3
- package/logfire_sqlls_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/logfire_sqlls_wasm.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export enum CompletionKind {
|
|
|
21
21
|
Field = 1,
|
|
22
22
|
Function = 2,
|
|
23
23
|
Keyword = 3,
|
|
24
|
+
Value = 4,
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
export class Diagnostic {
|
|
@@ -45,6 +46,10 @@ export enum DiagnosticCode {
|
|
|
45
46
|
AmbiguousColumn = 4,
|
|
46
47
|
DuplicateQualifiedFieldName = 5,
|
|
47
48
|
DuplicateUnqualifiedFieldName = 6,
|
|
49
|
+
MissingArgument = 7,
|
|
50
|
+
TooManyArguments = 8,
|
|
51
|
+
NoMatchingSignature = 9,
|
|
52
|
+
OrderByPositionOutOfBounds = 10,
|
|
48
53
|
}
|
|
49
54
|
|
|
50
55
|
export class Hover {
|
|
@@ -88,6 +93,13 @@ export class Location {
|
|
|
88
93
|
line: number;
|
|
89
94
|
}
|
|
90
95
|
|
|
96
|
+
export class ParameterInformation {
|
|
97
|
+
private constructor();
|
|
98
|
+
free(): void;
|
|
99
|
+
[Symbol.dispose](): void;
|
|
100
|
+
label: string;
|
|
101
|
+
}
|
|
102
|
+
|
|
91
103
|
export class RelatedInformation {
|
|
92
104
|
private constructor();
|
|
93
105
|
free(): void;
|
|
@@ -103,6 +115,25 @@ export enum Severity {
|
|
|
103
115
|
Fatal = 3,
|
|
104
116
|
}
|
|
105
117
|
|
|
118
|
+
export class SignatureHelp {
|
|
119
|
+
private constructor();
|
|
120
|
+
free(): void;
|
|
121
|
+
[Symbol.dispose](): void;
|
|
122
|
+
active_parameter: number;
|
|
123
|
+
active_signature: number;
|
|
124
|
+
signatures: SignatureInformation[];
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export class SignatureInformation {
|
|
128
|
+
private constructor();
|
|
129
|
+
free(): void;
|
|
130
|
+
[Symbol.dispose](): void;
|
|
131
|
+
get documentation(): string | undefined;
|
|
132
|
+
set documentation(value: string | null | undefined);
|
|
133
|
+
label: string;
|
|
134
|
+
parameters: ParameterInformation[];
|
|
135
|
+
}
|
|
136
|
+
|
|
106
137
|
export class Span {
|
|
107
138
|
private constructor();
|
|
108
139
|
free(): void;
|
|
@@ -118,6 +149,7 @@ export class Workspace {
|
|
|
118
149
|
getCompletions(query: string, location: Location): Completion[];
|
|
119
150
|
getDefinitions(query: string, location: Location): Span[];
|
|
120
151
|
getHover(query: string, location: Location): Hover | undefined;
|
|
152
|
+
getSignatureHelp(query: string, location: Location): SignatureHelp | undefined;
|
|
121
153
|
constructor(options: any);
|
|
122
154
|
}
|
|
123
155
|
|
|
@@ -143,11 +175,17 @@ export interface InitOutput {
|
|
|
143
175
|
readonly __wbg_get_hover_span: (a: number) => number;
|
|
144
176
|
readonly __wbg_get_location_column: (a: number) => number;
|
|
145
177
|
readonly __wbg_get_location_line: (a: number) => number;
|
|
178
|
+
readonly __wbg_get_parameterinformation_label: (a: number) => [number, number];
|
|
146
179
|
readonly __wbg_get_relatedinformation_span: (a: number) => number;
|
|
180
|
+
readonly __wbg_get_signaturehelp_active_parameter: (a: number) => number;
|
|
181
|
+
readonly __wbg_get_signaturehelp_active_signature: (a: number) => number;
|
|
182
|
+
readonly __wbg_get_signaturehelp_signatures: (a: number) => [number, number];
|
|
183
|
+
readonly __wbg_get_signatureinformation_parameters: (a: number) => [number, number];
|
|
147
184
|
readonly __wbg_get_span_end: (a: number) => number;
|
|
148
185
|
readonly __wbg_get_span_start: (a: number) => number;
|
|
149
186
|
readonly __wbg_hover_free: (a: number, b: number) => void;
|
|
150
187
|
readonly __wbg_location_free: (a: number, b: number) => void;
|
|
188
|
+
readonly __wbg_parameterinformation_free: (a: number, b: number) => void;
|
|
151
189
|
readonly __wbg_relatedinformation_free: (a: number, b: number) => void;
|
|
152
190
|
readonly __wbg_set_completion_detail: (a: number, b: number, c: number) => void;
|
|
153
191
|
readonly __wbg_set_completion_documentation: (a: number, b: number, c: number) => void;
|
|
@@ -165,19 +203,31 @@ export interface InitOutput {
|
|
|
165
203
|
readonly __wbg_set_hover_span: (a: number, b: number) => void;
|
|
166
204
|
readonly __wbg_set_location_column: (a: number, b: number) => void;
|
|
167
205
|
readonly __wbg_set_location_line: (a: number, b: number) => void;
|
|
206
|
+
readonly __wbg_set_parameterinformation_label: (a: number, b: number, c: number) => void;
|
|
168
207
|
readonly __wbg_set_relatedinformation_span: (a: number, b: number) => void;
|
|
208
|
+
readonly __wbg_set_signaturehelp_active_parameter: (a: number, b: number) => void;
|
|
209
|
+
readonly __wbg_set_signaturehelp_active_signature: (a: number, b: number) => void;
|
|
210
|
+
readonly __wbg_set_signaturehelp_signatures: (a: number, b: number, c: number) => void;
|
|
211
|
+
readonly __wbg_set_signatureinformation_parameters: (a: number, b: number, c: number) => void;
|
|
169
212
|
readonly __wbg_set_span_end: (a: number, b: number) => void;
|
|
170
213
|
readonly __wbg_set_span_start: (a: number, b: number) => void;
|
|
214
|
+
readonly __wbg_signaturehelp_free: (a: number, b: number) => void;
|
|
215
|
+
readonly __wbg_signatureinformation_free: (a: number, b: number) => void;
|
|
171
216
|
readonly __wbg_span_free: (a: number, b: number) => void;
|
|
172
|
-
readonly location_new: (a: number, b: number) => number;
|
|
173
|
-
readonly __wbg_get_relatedinformation_message: (a: number) => [number, number];
|
|
174
|
-
readonly __wbg_set_relatedinformation_message: (a: number, b: number, c: number) => void;
|
|
175
217
|
readonly __wbg_workspace_free: (a: number, b: number) => void;
|
|
218
|
+
readonly location_new: (a: number, b: number) => number;
|
|
176
219
|
readonly workspace_checkQuery: (a: number, b: number, c: number) => [number, number];
|
|
177
220
|
readonly workspace_getCompletions: (a: number, b: number, c: number, d: number) => [number, number];
|
|
178
221
|
readonly workspace_getDefinitions: (a: number, b: number, c: number, d: number) => [number, number];
|
|
179
222
|
readonly workspace_getHover: (a: number, b: number, c: number, d: number) => number;
|
|
223
|
+
readonly workspace_getSignatureHelp: (a: number, b: number, c: number, d: number) => number;
|
|
180
224
|
readonly workspace_new: (a: any) => [number, number, number];
|
|
225
|
+
readonly __wbg_set_signatureinformation_documentation: (a: number, b: number, c: number) => void;
|
|
226
|
+
readonly __wbg_get_signatureinformation_label: (a: number) => [number, number];
|
|
227
|
+
readonly __wbg_get_signatureinformation_documentation: (a: number) => [number, number];
|
|
228
|
+
readonly __wbg_set_relatedinformation_message: (a: number, b: number, c: number) => void;
|
|
229
|
+
readonly __wbg_get_relatedinformation_message: (a: number) => [number, number];
|
|
230
|
+
readonly __wbg_set_signatureinformation_label: (a: number, b: number, c: number) => void;
|
|
181
231
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
182
232
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
183
233
|
readonly __wbindgen_exn_store: (a: number) => void;
|
package/logfire_sqlls_wasm.js
CHANGED
|
@@ -133,13 +133,14 @@ export class Completion {
|
|
|
133
133
|
if (Symbol.dispose) Completion.prototype[Symbol.dispose] = Completion.prototype.free;
|
|
134
134
|
|
|
135
135
|
/**
|
|
136
|
-
* @enum {0 | 1 | 2 | 3}
|
|
136
|
+
* @enum {0 | 1 | 2 | 3 | 4}
|
|
137
137
|
*/
|
|
138
138
|
export const CompletionKind = Object.freeze({
|
|
139
139
|
Class: 0, "0": "Class",
|
|
140
140
|
Field: 1, "1": "Field",
|
|
141
141
|
Function: 2, "2": "Function",
|
|
142
142
|
Keyword: 3, "3": "Keyword",
|
|
143
|
+
Value: 4, "4": "Value",
|
|
143
144
|
});
|
|
144
145
|
|
|
145
146
|
export class Diagnostic {
|
|
@@ -261,7 +262,7 @@ export class Diagnostic {
|
|
|
261
262
|
if (Symbol.dispose) Diagnostic.prototype[Symbol.dispose] = Diagnostic.prototype.free;
|
|
262
263
|
|
|
263
264
|
/**
|
|
264
|
-
* @enum {0 | 1 | 2 | 3 | 4 | 5 | 6}
|
|
265
|
+
* @enum {0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10}
|
|
265
266
|
*/
|
|
266
267
|
export const DiagnosticCode = Object.freeze({
|
|
267
268
|
InvalidSyntax: 0, "0": "InvalidSyntax",
|
|
@@ -271,6 +272,10 @@ export const DiagnosticCode = Object.freeze({
|
|
|
271
272
|
AmbiguousColumn: 4, "4": "AmbiguousColumn",
|
|
272
273
|
DuplicateQualifiedFieldName: 5, "5": "DuplicateQualifiedFieldName",
|
|
273
274
|
DuplicateUnqualifiedFieldName: 6, "6": "DuplicateUnqualifiedFieldName",
|
|
275
|
+
MissingArgument: 7, "7": "MissingArgument",
|
|
276
|
+
TooManyArguments: 8, "8": "TooManyArguments",
|
|
277
|
+
NoMatchingSignature: 9, "9": "NoMatchingSignature",
|
|
278
|
+
OrderByPositionOutOfBounds: 10, "10": "OrderByPositionOutOfBounds",
|
|
274
279
|
});
|
|
275
280
|
|
|
276
281
|
export class Hover {
|
|
@@ -408,6 +413,56 @@ export class Location {
|
|
|
408
413
|
}
|
|
409
414
|
if (Symbol.dispose) Location.prototype[Symbol.dispose] = Location.prototype.free;
|
|
410
415
|
|
|
416
|
+
export class ParameterInformation {
|
|
417
|
+
static __wrap(ptr) {
|
|
418
|
+
ptr = ptr >>> 0;
|
|
419
|
+
const obj = Object.create(ParameterInformation.prototype);
|
|
420
|
+
obj.__wbg_ptr = ptr;
|
|
421
|
+
ParameterInformationFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
422
|
+
return obj;
|
|
423
|
+
}
|
|
424
|
+
static __unwrap(jsValue) {
|
|
425
|
+
if (!(jsValue instanceof ParameterInformation)) {
|
|
426
|
+
return 0;
|
|
427
|
+
}
|
|
428
|
+
return jsValue.__destroy_into_raw();
|
|
429
|
+
}
|
|
430
|
+
__destroy_into_raw() {
|
|
431
|
+
const ptr = this.__wbg_ptr;
|
|
432
|
+
this.__wbg_ptr = 0;
|
|
433
|
+
ParameterInformationFinalization.unregister(this);
|
|
434
|
+
return ptr;
|
|
435
|
+
}
|
|
436
|
+
free() {
|
|
437
|
+
const ptr = this.__destroy_into_raw();
|
|
438
|
+
wasm.__wbg_parameterinformation_free(ptr, 0);
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* @returns {string}
|
|
442
|
+
*/
|
|
443
|
+
get label() {
|
|
444
|
+
let deferred1_0;
|
|
445
|
+
let deferred1_1;
|
|
446
|
+
try {
|
|
447
|
+
const ret = wasm.__wbg_get_parameterinformation_label(this.__wbg_ptr);
|
|
448
|
+
deferred1_0 = ret[0];
|
|
449
|
+
deferred1_1 = ret[1];
|
|
450
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
451
|
+
} finally {
|
|
452
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* @param {string} arg0
|
|
457
|
+
*/
|
|
458
|
+
set label(arg0) {
|
|
459
|
+
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
460
|
+
const len0 = WASM_VECTOR_LEN;
|
|
461
|
+
wasm.__wbg_set_parameterinformation_label(this.__wbg_ptr, ptr0, len0);
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
if (Symbol.dispose) ParameterInformation.prototype[Symbol.dispose] = ParameterInformation.prototype.free;
|
|
465
|
+
|
|
411
466
|
export class RelatedInformation {
|
|
412
467
|
static __wrap(ptr) {
|
|
413
468
|
ptr = ptr >>> 0;
|
|
@@ -483,6 +538,157 @@ export const Severity = Object.freeze({
|
|
|
483
538
|
Fatal: 3, "3": "Fatal",
|
|
484
539
|
});
|
|
485
540
|
|
|
541
|
+
export class SignatureHelp {
|
|
542
|
+
static __wrap(ptr) {
|
|
543
|
+
ptr = ptr >>> 0;
|
|
544
|
+
const obj = Object.create(SignatureHelp.prototype);
|
|
545
|
+
obj.__wbg_ptr = ptr;
|
|
546
|
+
SignatureHelpFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
547
|
+
return obj;
|
|
548
|
+
}
|
|
549
|
+
__destroy_into_raw() {
|
|
550
|
+
const ptr = this.__wbg_ptr;
|
|
551
|
+
this.__wbg_ptr = 0;
|
|
552
|
+
SignatureHelpFinalization.unregister(this);
|
|
553
|
+
return ptr;
|
|
554
|
+
}
|
|
555
|
+
free() {
|
|
556
|
+
const ptr = this.__destroy_into_raw();
|
|
557
|
+
wasm.__wbg_signaturehelp_free(ptr, 0);
|
|
558
|
+
}
|
|
559
|
+
/**
|
|
560
|
+
* @returns {number}
|
|
561
|
+
*/
|
|
562
|
+
get active_parameter() {
|
|
563
|
+
const ret = wasm.__wbg_get_signaturehelp_active_parameter(this.__wbg_ptr);
|
|
564
|
+
return ret >>> 0;
|
|
565
|
+
}
|
|
566
|
+
/**
|
|
567
|
+
* @returns {number}
|
|
568
|
+
*/
|
|
569
|
+
get active_signature() {
|
|
570
|
+
const ret = wasm.__wbg_get_signaturehelp_active_signature(this.__wbg_ptr);
|
|
571
|
+
return ret >>> 0;
|
|
572
|
+
}
|
|
573
|
+
/**
|
|
574
|
+
* @returns {SignatureInformation[]}
|
|
575
|
+
*/
|
|
576
|
+
get signatures() {
|
|
577
|
+
const ret = wasm.__wbg_get_signaturehelp_signatures(this.__wbg_ptr);
|
|
578
|
+
var v1 = getArrayJsValueFromWasm0(ret[0], ret[1]).slice();
|
|
579
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 4, 4);
|
|
580
|
+
return v1;
|
|
581
|
+
}
|
|
582
|
+
/**
|
|
583
|
+
* @param {number} arg0
|
|
584
|
+
*/
|
|
585
|
+
set active_parameter(arg0) {
|
|
586
|
+
wasm.__wbg_set_signaturehelp_active_parameter(this.__wbg_ptr, arg0);
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* @param {number} arg0
|
|
590
|
+
*/
|
|
591
|
+
set active_signature(arg0) {
|
|
592
|
+
wasm.__wbg_set_signaturehelp_active_signature(this.__wbg_ptr, arg0);
|
|
593
|
+
}
|
|
594
|
+
/**
|
|
595
|
+
* @param {SignatureInformation[]} arg0
|
|
596
|
+
*/
|
|
597
|
+
set signatures(arg0) {
|
|
598
|
+
const ptr0 = passArrayJsValueToWasm0(arg0, wasm.__wbindgen_malloc);
|
|
599
|
+
const len0 = WASM_VECTOR_LEN;
|
|
600
|
+
wasm.__wbg_set_signaturehelp_signatures(this.__wbg_ptr, ptr0, len0);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
if (Symbol.dispose) SignatureHelp.prototype[Symbol.dispose] = SignatureHelp.prototype.free;
|
|
604
|
+
|
|
605
|
+
export class SignatureInformation {
|
|
606
|
+
static __wrap(ptr) {
|
|
607
|
+
ptr = ptr >>> 0;
|
|
608
|
+
const obj = Object.create(SignatureInformation.prototype);
|
|
609
|
+
obj.__wbg_ptr = ptr;
|
|
610
|
+
SignatureInformationFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
611
|
+
return obj;
|
|
612
|
+
}
|
|
613
|
+
static __unwrap(jsValue) {
|
|
614
|
+
if (!(jsValue instanceof SignatureInformation)) {
|
|
615
|
+
return 0;
|
|
616
|
+
}
|
|
617
|
+
return jsValue.__destroy_into_raw();
|
|
618
|
+
}
|
|
619
|
+
__destroy_into_raw() {
|
|
620
|
+
const ptr = this.__wbg_ptr;
|
|
621
|
+
this.__wbg_ptr = 0;
|
|
622
|
+
SignatureInformationFinalization.unregister(this);
|
|
623
|
+
return ptr;
|
|
624
|
+
}
|
|
625
|
+
free() {
|
|
626
|
+
const ptr = this.__destroy_into_raw();
|
|
627
|
+
wasm.__wbg_signatureinformation_free(ptr, 0);
|
|
628
|
+
}
|
|
629
|
+
/**
|
|
630
|
+
* @returns {string | undefined}
|
|
631
|
+
*/
|
|
632
|
+
get documentation() {
|
|
633
|
+
const ret = wasm.__wbg_get_signatureinformation_documentation(this.__wbg_ptr);
|
|
634
|
+
let v1;
|
|
635
|
+
if (ret[0] !== 0) {
|
|
636
|
+
v1 = getStringFromWasm0(ret[0], ret[1]).slice();
|
|
637
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
638
|
+
}
|
|
639
|
+
return v1;
|
|
640
|
+
}
|
|
641
|
+
/**
|
|
642
|
+
* @returns {string}
|
|
643
|
+
*/
|
|
644
|
+
get label() {
|
|
645
|
+
let deferred1_0;
|
|
646
|
+
let deferred1_1;
|
|
647
|
+
try {
|
|
648
|
+
const ret = wasm.__wbg_get_signatureinformation_label(this.__wbg_ptr);
|
|
649
|
+
deferred1_0 = ret[0];
|
|
650
|
+
deferred1_1 = ret[1];
|
|
651
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
652
|
+
} finally {
|
|
653
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
/**
|
|
657
|
+
* @returns {ParameterInformation[]}
|
|
658
|
+
*/
|
|
659
|
+
get parameters() {
|
|
660
|
+
const ret = wasm.__wbg_get_signatureinformation_parameters(this.__wbg_ptr);
|
|
661
|
+
var v1 = getArrayJsValueFromWasm0(ret[0], ret[1]).slice();
|
|
662
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 4, 4);
|
|
663
|
+
return v1;
|
|
664
|
+
}
|
|
665
|
+
/**
|
|
666
|
+
* @param {string | null} [arg0]
|
|
667
|
+
*/
|
|
668
|
+
set documentation(arg0) {
|
|
669
|
+
var ptr0 = isLikeNone(arg0) ? 0 : passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
670
|
+
var len0 = WASM_VECTOR_LEN;
|
|
671
|
+
wasm.__wbg_set_signatureinformation_documentation(this.__wbg_ptr, ptr0, len0);
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* @param {string} arg0
|
|
675
|
+
*/
|
|
676
|
+
set label(arg0) {
|
|
677
|
+
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
678
|
+
const len0 = WASM_VECTOR_LEN;
|
|
679
|
+
wasm.__wbg_set_signatureinformation_label(this.__wbg_ptr, ptr0, len0);
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
* @param {ParameterInformation[]} arg0
|
|
683
|
+
*/
|
|
684
|
+
set parameters(arg0) {
|
|
685
|
+
const ptr0 = passArrayJsValueToWasm0(arg0, wasm.__wbindgen_malloc);
|
|
686
|
+
const len0 = WASM_VECTOR_LEN;
|
|
687
|
+
wasm.__wbg_set_signatureinformation_parameters(this.__wbg_ptr, ptr0, len0);
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
if (Symbol.dispose) SignatureInformation.prototype[Symbol.dispose] = SignatureInformation.prototype.free;
|
|
691
|
+
|
|
486
692
|
export class Span {
|
|
487
693
|
static __wrap(ptr) {
|
|
488
694
|
ptr = ptr >>> 0;
|
|
@@ -600,6 +806,19 @@ export class Workspace {
|
|
|
600
806
|
const ret = wasm.workspace_getHover(this.__wbg_ptr, ptr0, len0, ptr1);
|
|
601
807
|
return ret === 0 ? undefined : Hover.__wrap(ret);
|
|
602
808
|
}
|
|
809
|
+
/**
|
|
810
|
+
* @param {string} query
|
|
811
|
+
* @param {Location} location
|
|
812
|
+
* @returns {SignatureHelp | undefined}
|
|
813
|
+
*/
|
|
814
|
+
getSignatureHelp(query, location) {
|
|
815
|
+
const ptr0 = passStringToWasm0(query, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
816
|
+
const len0 = WASM_VECTOR_LEN;
|
|
817
|
+
_assertClass(location, Location);
|
|
818
|
+
var ptr1 = location.__destroy_into_raw();
|
|
819
|
+
const ret = wasm.workspace_getSignatureHelp(this.__wbg_ptr, ptr0, len0, ptr1);
|
|
820
|
+
return ret === 0 ? undefined : SignatureHelp.__wrap(ret);
|
|
821
|
+
}
|
|
603
822
|
/**
|
|
604
823
|
* @param {any} options
|
|
605
824
|
*/
|
|
@@ -628,6 +847,12 @@ function __wbg_get_imports() {
|
|
|
628
847
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
629
848
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
630
849
|
},
|
|
850
|
+
__wbg___wbindgen_bigint_get_as_i64_3d3aba5d616c6a51: function(arg0, arg1) {
|
|
851
|
+
const v = arg1;
|
|
852
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
853
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
854
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
855
|
+
},
|
|
631
856
|
__wbg___wbindgen_boolean_get_6ea149f0a8dcc5ff: function(arg0) {
|
|
632
857
|
const v = arg0;
|
|
633
858
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
@@ -644,6 +869,10 @@ function __wbg_get_imports() {
|
|
|
644
869
|
const ret = arg0 in arg1;
|
|
645
870
|
return ret;
|
|
646
871
|
},
|
|
872
|
+
__wbg___wbindgen_is_bigint_ec25c7f91b4d9e93: function(arg0) {
|
|
873
|
+
const ret = typeof(arg0) === 'bigint';
|
|
874
|
+
return ret;
|
|
875
|
+
},
|
|
647
876
|
__wbg___wbindgen_is_function_3baa9db1a987f47d: function(arg0) {
|
|
648
877
|
const ret = typeof(arg0) === 'function';
|
|
649
878
|
return ret;
|
|
@@ -661,6 +890,10 @@ function __wbg_get_imports() {
|
|
|
661
890
|
const ret = arg0 === undefined;
|
|
662
891
|
return ret;
|
|
663
892
|
},
|
|
893
|
+
__wbg___wbindgen_jsval_eq_d3465d8a07697228: function(arg0, arg1) {
|
|
894
|
+
const ret = arg0 === arg1;
|
|
895
|
+
return ret;
|
|
896
|
+
},
|
|
664
897
|
__wbg___wbindgen_jsval_loose_eq_cac3565e89b4134c: function(arg0, arg1) {
|
|
665
898
|
const ret = arg0 == arg1;
|
|
666
899
|
return ret;
|
|
@@ -739,6 +972,16 @@ function __wbg_get_imports() {
|
|
|
739
972
|
const ret = result;
|
|
740
973
|
return ret;
|
|
741
974
|
},
|
|
975
|
+
__wbg_instanceof_Map_1b76fd4635be43eb: function(arg0) {
|
|
976
|
+
let result;
|
|
977
|
+
try {
|
|
978
|
+
result = arg0 instanceof Map;
|
|
979
|
+
} catch (_) {
|
|
980
|
+
result = false;
|
|
981
|
+
}
|
|
982
|
+
const ret = result;
|
|
983
|
+
return ret;
|
|
984
|
+
},
|
|
742
985
|
__wbg_instanceof_Uint8Array_152ba1f289edcf3f: function(arg0) {
|
|
743
986
|
let result;
|
|
744
987
|
try {
|
|
@@ -753,6 +996,10 @@ function __wbg_get_imports() {
|
|
|
753
996
|
const ret = Array.isArray(arg0);
|
|
754
997
|
return ret;
|
|
755
998
|
},
|
|
999
|
+
__wbg_isSafeInteger_4fc213d1989d6d2a: function(arg0) {
|
|
1000
|
+
const ret = Number.isSafeInteger(arg0);
|
|
1001
|
+
return ret;
|
|
1002
|
+
},
|
|
756
1003
|
__wbg_iterator_013bc09ec998c2a7: function() {
|
|
757
1004
|
const ret = Symbol.iterator;
|
|
758
1005
|
return ret;
|
|
@@ -793,6 +1040,14 @@ function __wbg_get_imports() {
|
|
|
793
1040
|
const ret = arg0.next;
|
|
794
1041
|
return ret;
|
|
795
1042
|
},
|
|
1043
|
+
__wbg_parameterinformation_new: function(arg0) {
|
|
1044
|
+
const ret = ParameterInformation.__wrap(arg0);
|
|
1045
|
+
return ret;
|
|
1046
|
+
},
|
|
1047
|
+
__wbg_parameterinformation_unwrap: function(arg0) {
|
|
1048
|
+
const ret = ParameterInformation.__unwrap(arg0);
|
|
1049
|
+
return ret;
|
|
1050
|
+
},
|
|
796
1051
|
__wbg_prototypesetcall_a6b02eb00b0f4ce2: function(arg0, arg1, arg2) {
|
|
797
1052
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
798
1053
|
},
|
|
@@ -810,6 +1065,14 @@ function __wbg_get_imports() {
|
|
|
810
1065
|
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
811
1066
|
arg0[arg1] = arg2;
|
|
812
1067
|
},
|
|
1068
|
+
__wbg_signatureinformation_new: function(arg0) {
|
|
1069
|
+
const ret = SignatureInformation.__wrap(arg0);
|
|
1070
|
+
return ret;
|
|
1071
|
+
},
|
|
1072
|
+
__wbg_signatureinformation_unwrap: function(arg0) {
|
|
1073
|
+
const ret = SignatureInformation.__unwrap(arg0);
|
|
1074
|
+
return ret;
|
|
1075
|
+
},
|
|
813
1076
|
__wbg_span_new: function(arg0) {
|
|
814
1077
|
const ret = Span.__wrap(arg0);
|
|
815
1078
|
return ret;
|
|
@@ -825,11 +1088,21 @@ function __wbg_get_imports() {
|
|
|
825
1088
|
const ret = arg0.value;
|
|
826
1089
|
return ret;
|
|
827
1090
|
},
|
|
828
|
-
__wbindgen_cast_0000000000000001: function(arg0
|
|
1091
|
+
__wbindgen_cast_0000000000000001: function(arg0) {
|
|
1092
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
1093
|
+
const ret = arg0;
|
|
1094
|
+
return ret;
|
|
1095
|
+
},
|
|
1096
|
+
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
829
1097
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
830
1098
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
831
1099
|
return ret;
|
|
832
1100
|
},
|
|
1101
|
+
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
1102
|
+
// Cast intrinsic for `U64 -> Externref`.
|
|
1103
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
1104
|
+
return ret;
|
|
1105
|
+
},
|
|
833
1106
|
__wbindgen_init_externref_table: function() {
|
|
834
1107
|
const table = wasm.__wbindgen_externrefs;
|
|
835
1108
|
const offset = table.grow(4);
|
|
@@ -858,9 +1131,18 @@ const HoverFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
|
858
1131
|
const LocationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
859
1132
|
? { register: () => {}, unregister: () => {} }
|
|
860
1133
|
: new FinalizationRegistry(ptr => wasm.__wbg_location_free(ptr >>> 0, 1));
|
|
1134
|
+
const ParameterInformationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
1135
|
+
? { register: () => {}, unregister: () => {} }
|
|
1136
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_parameterinformation_free(ptr >>> 0, 1));
|
|
861
1137
|
const RelatedInformationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
862
1138
|
? { register: () => {}, unregister: () => {} }
|
|
863
1139
|
: new FinalizationRegistry(ptr => wasm.__wbg_relatedinformation_free(ptr >>> 0, 1));
|
|
1140
|
+
const SignatureHelpFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
1141
|
+
? { register: () => {}, unregister: () => {} }
|
|
1142
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_signaturehelp_free(ptr >>> 0, 1));
|
|
1143
|
+
const SignatureInformationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
1144
|
+
? { register: () => {}, unregister: () => {} }
|
|
1145
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_signatureinformation_free(ptr >>> 0, 1));
|
|
864
1146
|
const SpanFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
865
1147
|
? { register: () => {}, unregister: () => {} }
|
|
866
1148
|
: new FinalizationRegistry(ptr => wasm.__wbg_span_free(ptr >>> 0, 1));
|
|
Binary file
|