forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJavaScriptTestHelper.cs
1360 lines (1179 loc) · 63.1 KB
/
JavaScriptTestHelper.cs
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.IO;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices.Marshalling;
using System.Threading.Tasks;
using System.Xml.Serialization;
[assembly: DisableRuntimeMarshalling]
namespace System.Runtime.InteropServices.JavaScript.Tests
{
public partial class JavaScriptTestHelper
{
[JSImport("globalThis.console.log")]
[return: JSMarshalAs<JSType.DiscardNoWait>]
public static partial void Log([JSMarshalAs<JSType.String>] string message);
[JSImport("globalThis.window.location.toString")]
public static partial string NativeFunctionToString();
[JSImport("globalThis.data.echoMemberMethod")]
public static partial string MemberEcho(string message);
[JSImport("globalThis.rebound.echoMemberMethod")]
public static partial string ReboundMemberEcho(string message);
[JSExport]
[return: JSMarshalAs<JSType.DiscardNoWait>] // this means that the message will arrive out of order, especially across threads.
public static void ConsoleWriteLine([JSMarshalAs<JSType.String>] string message)
{
Console.WriteLine(message);
}
[JSImport("delay", "JavaScriptTestHelper")]
public static partial Task Delay(int ms);
[JSImport("reject", "JavaScriptTestHelper")]
public static partial Task Reject([JSMarshalAs<JSType.Any>] object what);
[JSImport("intentionallyMissingImport", "JavaScriptTestHelper")]
public static partial void IntentionallyMissingImport();
[JSImport("intentionallyMissingImportAsync", "JavaScriptTestHelper")]
public static partial Task IntentionallyMissingImportAsync();
[JSImport("catch1toString", "JavaScriptTestHelper")]
public static partial string catch1toString(string message, string functionName);
[JSImport("catch1stack", "JavaScriptTestHelper")]
public static partial string catch1stack(string message, string functionName);
[JSExport]
public static void ThrowFromJSExport(string message)
{
throw new ArgumentException(message);
}
[JSExport]
[return: JSMarshalAs<JSType.Date>]
public static DateTime Now()
{
return DateTime.Now;
}
// the methods in the region have signature for which we have optimized path in the call marshaler
// it's the combination of number of arguments and void vs result
// see mono_wasm_bind_js_function and mono_wasm_bind_cs_function
#region Optimized
public static int optimizedReached = 0;
[JSExport]
public static void Optimized0V()
{
optimizedReached++;
}
[JSImport("invoke0V", "JavaScriptTestHelper")]
public static partial void invoke0V();
[JSExport]
public static void Optimized1V(int a1)
{
optimizedReached += a1;
}
[JSImport("invoke1V", "JavaScriptTestHelper")]
public static partial void invoke1V(int a1);
[JSExport]
[return: JSMarshalAs<JSType.DiscardNoWait>] // this means that the message will arrive out of order, especially across threads.
public static void Optimized1O(int a1)
{
optimizedReached += a1;
}
[JSImport("invoke1O", "JavaScriptTestHelper")]
public static partial void invoke1O(int a1);
[JSExport]
public static int Optimized1R(int a1)
{
optimizedReached += a1;
return a1 + 1;
}
[JSImport("invoke1R", "JavaScriptTestHelper")]
public static partial int invoke1R(int a1);
[JSExport]
public static int Optimized2R(int a1, int a2)
{
optimizedReached += a1 + a2;
return a1 + a2 + 1;
}
[JSImport("invoke2R", "JavaScriptTestHelper")]
public static partial int invoke2R(int a1, int a2);
#endregion
[JSImport("create_function", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function<JSType.Number, JSType.Number, JSType.Number>>]
public static partial Func<int, int, int> createMath([JSMarshalAs<JSType.String>] string a, [JSMarshalAs<JSType.String>] string b, [JSMarshalAs<JSType.String>] string code);
[JSImport("getType1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string getType1();
[JSImport("getClass1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string getClass1();
[JSImport("throw0fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Discard>]
internal static partial void throw0();
[JSImport("returnError", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Any>]
internal static partial object returnError();
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Void>>]
internal static partial Task echo1_Task([JSMarshalAs<JSType.Promise<JSType.Void>>] Task arg1);
[JSImport("createException", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Error>]
internal static partial Exception createException([JSMarshalAs<JSType.String>] string name);
[JSImport("createData", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Object>]
internal static partial JSObject createData([JSMarshalAs<JSType.String>] string name);
#region relaxed
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial void Relaxed(string a1, Exception ex,
bool ab, double a6, byte a2, char a3, short a4, float a5, IntPtr a7,
bool? nab, double? na6, byte? na2, char? na3, short? na4, float? na5, IntPtr? na7,
Task<string> ta1, Task<Exception> tex,
Task<bool> tab, Task<double> ta6, Task<byte> ta2, Task<char> ta3, Task<short> ta4, Task<float> ta5, Task<IntPtr> ta7,
string[] aa1, byte[] aab, double[] aad, int[] aai
);
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial double RelaxedDouble();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial string RelaxedString();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial string[] RelaxedStringArray();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial Exception RelaxedException();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial bool RelaxedBool();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial double? RelaxedNullableDouble();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial bool? RelaxedNullableBool();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial Task RelaxedTask();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial Task<double> RelaxedTaskDouble();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial Task<string> RelaxedTaskString();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial Task<Exception> RelaxedTaskException();
[JSImport("dummy", "JavaScriptTestHelper")]
internal static partial Task<bool> RelaxedTaskBool();
#endregion
#region Arrays
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.Number>>]
internal static partial byte[]? echo1_ByteArray([JSMarshalAs<JSType.Array<JSType.Number>>] byte[]? value);
[JSImport("storeAt", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial byte? store_ByteArray([JSMarshalAs<JSType.Array<JSType.Number>>] byte[]? value, [JSMarshalAs<JSType.Number>] int index);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.Number>>]
internal static partial int[]? echo1_Int32Array([JSMarshalAs<JSType.Array<JSType.Number>>] int[]? value);
[JSImport("storeAt", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int? store_Int32Array([JSMarshalAs<JSType.Array<JSType.Number>>] int[]? value, [JSMarshalAs<JSType.Number>] int index);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.Number>>]
internal static partial double[]? echo1_DoubleArray([JSMarshalAs<JSType.Array<JSType.Number>>] double[]? value);
[JSImport("storeAt", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double? store_DoubleArray([JSMarshalAs<JSType.Array<JSType.Number>>] double[]? value, [JSMarshalAs<JSType.Number>] int index);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.String>>]
internal static partial string[]? echo1_StringArray([JSMarshalAs<JSType.Array<JSType.String>>] string[]? value);
[JSImport("storeAt", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string? store_StringArray([JSMarshalAs<JSType.Array<JSType.String>>] string[]? value, [JSMarshalAs<JSType.Number>] int index);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.Any>>]
internal static partial object[]? echo1_ObjectArray([JSMarshalAs<JSType.Array<JSType.Any>>] object[]? value);
[JSImport("storeAt", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Any>]
internal static partial object? store_ObjectArray([JSMarshalAs<JSType.Array<JSType.Any>>] object[]? value, [JSMarshalAs<JSType.Number>] int index);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.Object>>]
internal static partial JSObject[]? echo1_JSObjectArray([JSMarshalAs<JSType.Array<JSType.Object>>] JSObject[]? value);
[JSImport("storeAt", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Object>]
internal static partial JSObject? store_JSObjectArray([JSMarshalAs<JSType.Array<JSType.Object>>] JSObject[]? value, [JSMarshalAs<JSType.Number>] int index);
#endregion
#region Views
[JSImport("echo1view", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.MemoryView>]
internal static partial Span<byte> echo1_SpanOfByte([JSMarshalAs<JSType.MemoryView>] Span<byte> value, [JSMarshalAs<JSType.Boolean>] bool edit);
[JSImport("echo1view", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.MemoryView>]
internal static partial Span<int> echo1_SpanOfInt32([JSMarshalAs<JSType.MemoryView>] Span<int> value, [JSMarshalAs<JSType.Boolean>] bool edit);
[JSImport("echo1view", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.MemoryView>]
internal static partial Span<double> echo1_SpanOfDouble([JSMarshalAs<JSType.MemoryView>] Span<double> value, [JSMarshalAs<JSType.Boolean>] bool edit);
[JSImport("echo1view", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.MemoryView>]
internal static partial ArraySegment<byte> echo1_ArraySegmentOfByte([JSMarshalAs<JSType.MemoryView>] ArraySegment<byte> value, [JSMarshalAs<JSType.Boolean>] bool edit);
[JSImport("echo1view", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.MemoryView>]
internal static partial ArraySegment<int> echo1_ArraySegmentOfInt32([JSMarshalAs<JSType.MemoryView>] ArraySegment<int> value, [JSMarshalAs<JSType.Boolean>] bool edit);
[JSImport("echo1view", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.MemoryView>]
internal static partial ArraySegment<double> echo1_ArraySegmentOfDouble([JSMarshalAs<JSType.MemoryView>] ArraySegment<double> value, [JSMarshalAs<JSType.Boolean>] bool edit);
#endregion
#region Int32
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int echo1_Int32([JSMarshalAs<JSType.Number>] int value);
[JSImport("store1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Void>]
internal static partial void store1_Int32([JSMarshalAs<JSType.Number>] int value);
[JSImport("store1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.DiscardNoWait>] // this means that the message will arrive out of order, especially across threads.
internal static partial void store1DiscardNoWait_Int32([JSMarshalAs<JSType.Number>] int value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int retrieve1_Int32();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Int32([JSMarshalAs<JSType.Number>] int value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int throw1_Int32([JSMarshalAs<JSType.Number>] int value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int invoke1_Int32([JSMarshalAs<JSType.Number>] int value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static int EchoInt32([JSMarshalAs<JSType.Number>] int arg1)
{
return arg1;
}
#endregion Int32
#region String
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string echo1_String([JSMarshalAs<JSType.String>] string value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_String([JSMarshalAs<JSType.String>] string value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string retrieve1_String();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_String([JSMarshalAs<JSType.String>] string value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string throw1_String([JSMarshalAs<JSType.String>] string value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string invoke1_String([JSMarshalAs<JSType.String>] string value, [JSMarshalAs<JSType.String>] string name);
[JSImport("invoke2", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial string invoke2_String([JSMarshalAs<JSType.String>] string value, [JSMarshalAs<JSType.String>] string name);
[JSImport("invokeStructClassRecords", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Array<JSType.String>>]
internal static partial string[] invokeStructClassRecords([JSMarshalAs<JSType.String>] string value);
[JSExport]
[return: JSMarshalAs<JSType.String>]
public static string EchoString([JSMarshalAs<JSType.String>] string arg1)
{
return arg1;
}
[JSImport("echopromise", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.String>>]
internal static partial Task<string> echopromise_String([JSMarshalAs<JSType.String>] string value);
#endregion String
#region Object
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Any>]
internal static partial object echo1_Object([JSMarshalAs<JSType.Any>] object value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Object([JSMarshalAs<JSType.Any>] object value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Any>]
internal static partial object retrieve1_Object();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Object([JSMarshalAs<JSType.Any>] object value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Any>]
internal static partial object throw1_Object([JSMarshalAs<JSType.Any>] object value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Any>]
internal static partial object invoke1_Object([JSMarshalAs<JSType.Any>] object value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Any>]
public static object EchoObject([JSMarshalAs<JSType.Any>] object arg1)
{
return arg1;
}
[JSImport("echopromise", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Any>>]
internal static partial Task<object> echopromise_Object([JSMarshalAs<JSType.Any>] object value);
#endregion Object
#region Exception
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Error>]
internal static partial Exception echo1_Exception([JSMarshalAs<JSType.Error>] Exception value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Exception([JSMarshalAs<JSType.Error>] Exception value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Error>]
internal static partial Exception retrieve1_Exception();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Exception([JSMarshalAs<JSType.Error>] Exception value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Error>]
internal static partial Exception throw1_Exception([JSMarshalAs<JSType.Error>] Exception value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Error>]
internal static partial Exception invoke1_Exception([JSMarshalAs<JSType.Error>] Exception value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Error>]
public static Exception EchoException([JSMarshalAs<JSType.Error>] Exception arg1)
{
return arg1;
}
[JSImport("echopromise", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Error>>]
internal static partial Task<Exception> echopromise_Exception([JSMarshalAs<JSType.Error>] Exception value);
#endregion Exception
#region Task
[JSImport("awaitvoid", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Void>>]
internal static partial Task awaitvoid([JSMarshalAs<JSType.Promise<JSType.Void>>] Task arg1);
[JSImport("sleep", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Void>>]
internal static partial Task sleep([JSMarshalAs<JSType.Number>] int ms);
[JSImport("forever", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Void>>]
internal static partial Task forever();
[JSImport("sleep", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Number>>]
internal static partial Task<int> sleep_Int([JSMarshalAs<JSType.Number>] int ms);
[JSImport("sleep", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Number>>]
internal static partial Task<int>? sleepMaybe_Int([JSMarshalAs<JSType.Number>] int ms);
[JSImport("await2", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Void>>]
internal static partial Task await2([JSMarshalAs<JSType.Promise<JSType.Void>>] Task arg1);
[JSImport("thenvoid", "JavaScriptTestHelper")]
internal static partial void thenvoid([JSMarshalAs<JSType.Promise<JSType.Void>>] Task arg1);
[JSImport("await1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Any>>]
internal static partial Task<object> await1([JSMarshalAs<JSType.Promise<JSType.Any>>] Task<object> arg1);
[JSImport("await1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Error>>]
internal static partial Task<Exception> await1_TaskOfException([JSMarshalAs<JSType.Promise<JSType.Error>>] Task<Exception> arg1);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Any>>]
internal static partial Task<object> invoke1_TaskOfObject([JSMarshalAs<JSType.Promise<JSType.Any>>] Task<object> value, [JSMarshalAs<JSType.String>] string name);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Promise<JSType.Number>>]
internal static partial Task<int> invoke1_TaskOfInt([JSMarshalAs<JSType.Promise<JSType.Number>>] Task<int> value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Promise<JSType.Any>>]
public static async Task<object> AwaitTaskOfObject([JSMarshalAs<JSType.Promise<JSType.Any>>] Task<object> arg1)
{
var res = await arg1;
return res;
}
#endregion
#region Action + Func
[JSImport("back3", "JavaScriptTestHelper")]
internal static partial void back3_Action([JSMarshalAs<JSType.Function>] Action action);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function>]
internal static partial Action echo1_ActionAction([JSMarshalAs<JSType.Function>] Action action);
[JSImport("echo1large", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function>]
internal static partial Action echo1large_ActionAction([JSMarshalAs<JSType.Function>] Action action);
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function<JSType.Number>>]
internal static partial Action<int> echo1_ActionIntActionInt([JSMarshalAs<JSType.Function<JSType.Number>>] Action<int> action);
[JSImport("backback", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>]
internal static partial Func<int, int> backback_FuncIntFuncInt([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Func<int, int> fun, [JSMarshalAs<JSType.Number>] int a);
[JSImport("backback", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function<JSType.Number, JSType.Number, JSType.Number>>]
internal static partial Func<int, int, int> backback_FuncIntIntFuncIntInt([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number, JSType.Number>>] Func<int, int, int> fun, [JSMarshalAs<JSType.Number>] int a, [JSMarshalAs<JSType.Number>] int b);
[JSImport("backbackAsync", "JavaScriptTestHelper")]
internal static partial Task<int> backback_FuncIntIntFuncIntIntAsync([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number, JSType.Number>>] Func<int, int, int> fun, [JSMarshalAs<JSType.Number>] int a, [JSMarshalAs<JSType.Number>] int b);
[JSImport("back3", "JavaScriptTestHelper")]
internal static partial void back3_ActionInt([JSMarshalAs<JSType.Function<JSType.Number>>] Action<int>? action, [JSMarshalAs<JSType.Number>] int a);
[JSImport("back3", "JavaScriptTestHelper")]
internal static partial void back3_ActionIntInt([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Action<int, int>? action, [JSMarshalAs<JSType.Number>] int a, [JSMarshalAs<JSType.Number>] int b);
[JSImport("back3", "JavaScriptTestHelper")]
internal static partial void back3_ActionLongLong([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Action<long, long>? action, [JSMarshalAs<JSType.Number>] long a, [JSMarshalAs<JSType.Number>] long b);
[JSImport("back3", "JavaScriptTestHelper")]
internal static partial void back3_ActionIntLong([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Action<int, long>? action, [JSMarshalAs<JSType.Number>] int a, [JSMarshalAs<JSType.Number>] long b);
[JSImport("back3", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int back3_FunctionIntInt([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Func<int, int>? fun, [JSMarshalAs<JSType.Number>] int a);
[JSImport("back4", "JavaScriptTestHelper")]
internal static partial void back4_ActionIntLongDouble([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number, JSType.Number>>] Action<int, long, double>? action, [JSMarshalAs<JSType.Number>] int a, [JSMarshalAs<JSType.Number>] long b, [JSMarshalAs<JSType.Number>] double c);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>]
internal static partial Func<int, int> invoke1_FuncOfIntInt([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Func<int, int> value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>]
public static Func<int, int> BackFuncOfIntInt([JSMarshalAs<JSType.Function<JSType.Number, JSType.Number>>] Func<int, int> arg1)
{
return (int a) =>
{
return arg1(a);
};
}
#endregion
#region Boolean
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool echo1_Boolean([JSMarshalAs<JSType.Boolean>] bool value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Boolean([JSMarshalAs<JSType.Boolean>] bool value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool retrieve1_Boolean();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Boolean([JSMarshalAs<JSType.Boolean>] bool value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool throw1_Boolean([JSMarshalAs<JSType.Boolean>] bool value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool invoke1_Boolean([JSMarshalAs<JSType.Boolean>] bool value, [JSMarshalAs<JSType.String>] string name);
[JSImport("invoke1Async", "JavaScriptTestHelper")]
internal static partial Task<bool> invoke1_BooleanAsync(bool value, string name);
[JSExport]
[return: JSMarshalAs<JSType.Boolean>]
public static bool EchoBoolean([JSMarshalAs<JSType.Boolean>] bool arg1)
{
return arg1;
}
#endregion Boolean
#region Char
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial char echo1_Char([JSMarshalAs<JSType.String>] char value);
[JSImport("store1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Discard>]
internal static partial void store1_Char([JSMarshalAs<JSType.String>] char value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial char retrieve1_Char();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Char([JSMarshalAs<JSType.String>] char value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial char throw1_Char([JSMarshalAs<JSType.String>] char value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.String>]
internal static partial char invoke1_Char([JSMarshalAs<JSType.String>] char value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.String>]
public static char EchoChar([JSMarshalAs<JSType.String>] char arg1)
{
return arg1;
}
#endregion Byte
#region Byte
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial byte echo1_Byte([JSMarshalAs<JSType.Number>] byte value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Byte([JSMarshalAs<JSType.Number>] byte value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial byte retrieve1_Byte();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Byte([JSMarshalAs<JSType.Number>] byte value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial byte throw1_Byte([JSMarshalAs<JSType.Number>] byte value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial byte invoke1_Byte([JSMarshalAs<JSType.Number>] byte value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static byte EchoByte([JSMarshalAs<JSType.Number>] byte arg1)
{
return arg1;
}
#endregion Byte
#region Int16
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial short echo1_Int16([JSMarshalAs<JSType.Number>] short value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Int16([JSMarshalAs<JSType.Number>] short value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial short retrieve1_Int16();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Int16([JSMarshalAs<JSType.Number>] short value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial short throw1_Int16([JSMarshalAs<JSType.Number>] short value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial short invoke1_Int16([JSMarshalAs<JSType.Number>] short value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static short EchoInt16([JSMarshalAs<JSType.Number>] short arg1)
{
return arg1;
}
#endregion Int16
#region Int52
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial long echo1_Int52([JSMarshalAs<JSType.Number>] long value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Int52([JSMarshalAs<JSType.Number>] long value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial long retrieve1_Int52();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Int52([JSMarshalAs<JSType.Number>] long value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial long throw1_Int52([JSMarshalAs<JSType.Number>] long value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial long invoke1_Int52([JSMarshalAs<JSType.Number>] long value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static long EchoInt52([JSMarshalAs<JSType.Number>] long arg1)
{
return arg1;
}
#endregion Int52
#region BigInt64
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long echo1_BigInt64([JSMarshalAs<JSType.BigInt>] long value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_BigInt64([JSMarshalAs<JSType.BigInt>] long value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long retrieve1_BigInt64();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_BigInt64([JSMarshalAs<JSType.BigInt>] long value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long throw1_BigInt64([JSMarshalAs<JSType.BigInt>] long value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long invoke1_BigInt64([JSMarshalAs<JSType.BigInt>] long value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.BigInt>]
public static long EchoBigInt64([JSMarshalAs<JSType.BigInt>] long arg1)
{
return arg1;
}
#endregion BigInt64
#region Double
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double echo1_Double([JSMarshalAs<JSType.Number>] double value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Double([JSMarshalAs<JSType.Number>] double value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double retrieve1_Double();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Double([JSMarshalAs<JSType.Number>] double value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double throw1_Double([JSMarshalAs<JSType.Number>] double value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double invoke1_Double([JSMarshalAs<JSType.Number>] double value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static double EchoDouble([JSMarshalAs<JSType.Number>] double arg1)
{
return arg1;
}
#endregion Double
#region Single
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial float echo1_Single([JSMarshalAs<JSType.Number>] float value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_Single([JSMarshalAs<JSType.Number>] float value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial float retrieve1_Single();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_Single([JSMarshalAs<JSType.Number>] float value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial float throw1_Single([JSMarshalAs<JSType.Number>] float value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial float invoke1_Single([JSMarshalAs<JSType.Number>] float value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static float EchoSingle([JSMarshalAs<JSType.Number>] float arg1)
{
return arg1;
}
#endregion Single
#region IntPtr
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr echo1_IntPtr([JSMarshalAs<JSType.Number>] IntPtr value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_IntPtr([JSMarshalAs<JSType.Number>] IntPtr value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr retrieve1_IntPtr();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_IntPtr([JSMarshalAs<JSType.Number>] IntPtr value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr throw1_IntPtr([JSMarshalAs<JSType.Number>] IntPtr value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr invoke1_IntPtr([JSMarshalAs<JSType.Number>] IntPtr value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static IntPtr EchoIntPtr([JSMarshalAs<JSType.Number>] IntPtr arg1)
{
return arg1;
}
#endregion IntPtr
#region VoidPtr
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal unsafe static partial void* echo1_VoidPtr([JSMarshalAs<JSType.Number>] void* value);
[JSImport("store1", "JavaScriptTestHelper")]
internal unsafe static partial void store1_VoidPtr([JSMarshalAs<JSType.Number>] void* value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal unsafe static partial void* retrieve1_VoidPtr();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal unsafe static partial bool identity1_VoidPtr([JSMarshalAs<JSType.Number>] void* value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal unsafe static partial void* throw1_VoidPtr([JSMarshalAs<JSType.Number>] void* value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal unsafe static partial void* invoke1_VoidPtr([JSMarshalAs<JSType.Number>] void* value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public unsafe static void* EchoVoidPtr([JSMarshalAs<JSType.Number>] void* arg1)
{
return arg1;
}
#endregion VoidPtr
#region DateTime
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime echo1_DateTime([JSMarshalAs<JSType.Date>] DateTime value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_DateTime([JSMarshalAs<JSType.Date>] DateTime value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime retrieve1_DateTime();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_DateTime([JSMarshalAs<JSType.Date>] DateTime value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime throw1_DateTime([JSMarshalAs<JSType.Date>] DateTime value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime invoke1_DateTime([JSMarshalAs<JSType.Date>] DateTime value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Date>]
public static DateTime EchoDateTime([JSMarshalAs<JSType.Date>] DateTime arg1)
{
return arg1;
}
#endregion DateTime
#region DateTimeOffset
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTimeOffset echo1_DateTimeOffset([JSMarshalAs<JSType.Date>] DateTimeOffset value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_DateTimeOffset([JSMarshalAs<JSType.Date>] DateTimeOffset value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTimeOffset retrieve1_DateTimeOffset();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_DateTimeOffset([JSMarshalAs<JSType.Date>] DateTimeOffset value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTimeOffset throw1_DateTimeOffset([JSMarshalAs<JSType.Date>] DateTimeOffset value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTimeOffset invoke1_DateTimeOffset([JSMarshalAs<JSType.Date>] DateTimeOffset value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Date>]
public static DateTimeOffset EchoDateTimeOffset([JSMarshalAs<JSType.Date>] DateTimeOffset arg1)
{
return arg1;
}
#endregion DateTimeOffset
#region NullableBoolean
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool? echo1_NullableBoolean([JSMarshalAs<JSType.Boolean>] bool? value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_NullableBoolean([JSMarshalAs<JSType.Boolean>] bool? value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool? retrieve1_NullableBoolean();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_NullableBoolean([JSMarshalAs<JSType.Boolean>] bool? value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool? throw1_NullableBoolean([JSMarshalAs<JSType.Boolean>] bool? value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool? invoke1_NullableBoolean([JSMarshalAs<JSType.Boolean>] bool? value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Boolean>]
public static bool? EchoNullableBoolean([JSMarshalAs<JSType.Boolean>] bool? arg1)
{
return arg1;
}
#endregion NullableBoolean
#region NullableInt32
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int? echo1_NullableInt32([JSMarshalAs<JSType.Number>] int? value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_NullableInt32([JSMarshalAs<JSType.Number>] int? value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int? retrieve1_NullableInt32();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_NullableInt32([JSMarshalAs<JSType.Number>] int? value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int? throw1_NullableInt32([JSMarshalAs<JSType.Number>] int? value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial int? invoke1_NullableInt32([JSMarshalAs<JSType.Number>] int? value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static int? EchoNullableInt32([JSMarshalAs<JSType.Number>] int? arg1)
{
return arg1;
}
#endregion NullableInt32
#region NullableBigInt64
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long? echo1_NullableBigInt64([JSMarshalAs<JSType.BigInt>] long? value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_NullableBigInt64([JSMarshalAs<JSType.BigInt>] long? value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long? retrieve1_NullableBigInt64();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_NullableBigInt64([JSMarshalAs<JSType.BigInt>] long? value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long? throw1_NullableBigInt64([JSMarshalAs<JSType.BigInt>] long? value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.BigInt>]
internal static partial long? invoke1_NullableBigInt64([JSMarshalAs<JSType.BigInt>] long? value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.BigInt>]
public static long? EchoNullableBigInt64([JSMarshalAs<JSType.BigInt>] long? arg1)
{
return arg1;
}
#endregion NullableBigInt64
#region NullableIntPtr
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr? echo1_NullableIntPtr([JSMarshalAs<JSType.Number>] IntPtr? value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_NullableIntPtr([JSMarshalAs<JSType.Number>] IntPtr? value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr? retrieve1_NullableIntPtr();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_NullableIntPtr([JSMarshalAs<JSType.Number>] IntPtr? value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr? throw1_NullableIntPtr([JSMarshalAs<JSType.Number>] IntPtr? value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial IntPtr? invoke1_NullableIntPtr([JSMarshalAs<JSType.Number>] IntPtr? value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static IntPtr? EchoNullableIntPtr([JSMarshalAs<JSType.Number>] IntPtr? arg1)
{
return arg1;
}
#endregion NullableIntPtr
#region NullableDouble
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double? echo1_NullableDouble([JSMarshalAs<JSType.Number>] double? value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_NullableDouble([JSMarshalAs<JSType.Number>] double? value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double? retrieve1_NullableDouble();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_NullableDouble([JSMarshalAs<JSType.Number>] double? value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double? throw1_NullableDouble([JSMarshalAs<JSType.Number>] double? value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Number>]
internal static partial double? invoke1_NullableDouble([JSMarshalAs<JSType.Number>] double? value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Number>]
public static double? EchoNullableDouble([JSMarshalAs<JSType.Number>] double? arg1)
{
return arg1;
}
#endregion NullableDouble
#region NullableDateTime
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime? echo1_NullableDateTime([JSMarshalAs<JSType.Date>] DateTime? value);
[JSImport("store1", "JavaScriptTestHelper")]
internal static partial void store1_NullableDateTime([JSMarshalAs<JSType.Date>] DateTime? value);
[JSImport("retrieve1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime? retrieve1_NullableDateTime();
[JSImport("identity1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Boolean>]
internal static partial bool identity1_NullableDateTime([JSMarshalAs<JSType.Date>] DateTime? value);
[JSImport("throw1fn", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime? throw1_NullableDateTime([JSMarshalAs<JSType.Date>] DateTime? value);
[JSImport("invoke1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Date>]
internal static partial DateTime? invoke1_NullableDateTime([JSMarshalAs<JSType.Date>] DateTime? value, [JSMarshalAs<JSType.String>] string name);
[JSExport]
[return: JSMarshalAs<JSType.Date>]
public static DateTime? EchoNullableDateTime([JSMarshalAs<JSType.Date>] DateTime? arg1)
{
return arg1;
}
#endregion NullableDateTime
#region JSObject
[JSImport("echo1", "JavaScriptTestHelper")]
[return: JSMarshalAs<JSType.Object>]