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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
macro_rules! x {
    () => {
        unimplemented!("This code exists only for documentation purposes");
    };
}

/// Declare Ruby native types. It's only for documentation purposes.
pub mod Ruby {
    /// A native Ruby boolean.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// true
    /// # "#); }
    /// ```
    pub struct Boolean;

    /// A native Ruby integer.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// 42
    /// # "#); }
    /// ```
    pub struct Integer;

    /// A native Ruby float.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// 4.2
    /// # "#); }
    /// ```
    pub struct Float;

    /// A native Ruby string.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// "hello"
    /// # "#); }
    /// ```
    pub struct String;

    /// A native Ruby array.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// [1, "two", 3.0]
    /// # "#); }
    /// ```
    pub struct Array<T>;

    /// A native Ruby hash.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// {"foo": 42, "bar": 153}
    /// # "#); }
    /// ```
    pub struct Hash<K, V>;

    /// Represents any kind of object.
    pub struct Any;
}

/// The `Wasmer` module provides the entire Wasmer API to manipulate
/// the WebAssembly runtime.
pub mod Wasmer {
    use crate::doc::Ruby::*;

    /// A WebAssembly type.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// Wasmer::Type::I32
    /// # "#); }
    /// ```
    #[allow(non_camel_case_types)]
    pub enum Type {
        I32,
        I64,
        F32,
        F64,
        V128,
        EXTERN_REF,
        FUNC_REF,
    }

    /// Represents the signature of a function that is either
    /// implemented in WebAssembly module or exposed to WebAssembly by
    /// the host.
    ///
    /// WebAssembly functions can have 0 or more parameters and results.
    pub struct FunctionType;

    impl FunctionType {
        /// Creates a new `FunctionType`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// function_type = Wasmer::FunctionType.new(
        ///     [Wasmer::Type::I32, Wasmer::Type::I64],
        ///     [Wasmer::Type::I32]
        /// )
        /// # "#); }
        /// ```
        pub fn new(params: Array<Type>, results: Array<Type>) -> Self {
            x!()
        }

        /// Returns the parameters.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// function_type = Wasmer::FunctionType.new(
        ///     [Wasmer::Type::I32, Wasmer::Type::I64],
        ///     [Wasmer::Type::I32]
        /// )
        ///
        /// assert { function_type.params == [Wasmer::Type::I32, Wasmer::Type::I64] }
        /// # "#); }
        /// ```
        pub fn params(&self) -> Array<Type> {
            x!()
        }

        /// Returns the results.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// function_type = Wasmer::FunctionType.new(
        ///     [Wasmer::Type::I32, Wasmer::Type::I64],
        ///     [Wasmer::Type::I32]
        /// )
        ///
        /// assert { function_type.results == [Wasmer::Type::I32] }
        /// # "#); }
        /// ```
        pub fn results(&self) -> Array<Type> {
            x!()
        }
    }

    /// A descriptor for a WebAssembly memory type.
    ///
    /// Memories are described in units of pages (64Kb) and represent
    /// contiguous chunks of addressable memory.
    pub struct MemoryType;

    impl MemoryType {
        /// Creates a new `MemoryType`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// memory_type = Wasmer::MemoryType.new 1, 3, true
        /// # "#); }
        /// ```
        pub fn new(minimum: Integer, maximum: Option<Integer>, shared: Boolean) -> Self {
            x!()
        }

        /// Returns the minimum size of the memory.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// memory_type = Wasmer::MemoryType.new 1, 3, true
        ///
        /// assert { memory_type.minimum == 1 }
        /// # "#); }
        /// ```
        pub fn minimum(&self) -> Integer {
            x!()
        }

        /// Returns the maximum size of the memory of any.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// memory_type = Wasmer::MemoryType.new 1, 3, true
        ///
        /// assert { memory_type.maximum == 3 }
        /// # "#); }
        /// ```
        pub fn maximum(&self) -> Option<Integer> {
            x!()
        }

        /// Returns whether the memory is shared or not.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// memory_type = Wasmer::MemoryType.new 1, 3, true
        ///
        /// assert { memory_type.shared? }
        /// # "#); }
        /// ```
        pub fn shared(&self) -> Integer {
            x!()
        }
    }

    /// A descriptor for a WebAssembly global.
    pub struct GlobalType;

    impl GlobalType {
        /// Creates a new `GlobalType`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// global_type = Wasmer::GlobalType.new Wasmer::Type::I32, true
        /// # "#); }
        /// ```
        pub fn new(r#type: Type, mutable: Boolean) -> Self {
            x!()
        }

        /// Returns the type of the global.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// global_type = Wasmer::GlobalType.new Wasmer::Type::I32, true
        ///
        /// assert { global_type.type == Wasmer::Type::I32 }
        /// # "#); }
        /// ```
        pub fn r#type(&self) -> Type {
            x!()
        }

        /// Returns whether the global is mutable.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// global_type = Wasmer::GlobalType.new Wasmer::Type::I32, true
        ///
        /// assert { global_type.mutable? }
        /// # "#); }
        /// ```
        pub fn mutable(&self) -> Boolean {
            x!()
        }
    }

    /// A descriptor for a table in a WebAssembly module.
    ///
    /// Tables are contiguous chunks of a specific element, typically
    /// a funcref or externref. The most common use for tables is a
    /// function table through which call_indirect can invoke other
    /// functions.
    pub struct TableType;

    impl TableType {
        /// Creates a new `TableType`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// table_type = Wasmer::TableType.new Wasmer::Type::I32, 7, 42
        /// # "#); }
        /// ```
        pub fn new(r#type: Type, minimum: Integer, maximum: Option<Integer>) -> Self {
            x!()
        }

        /// Returns the type of table.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// table_type = Wasmer::TableType.new Wasmer::Type::I32, 7, 42
        ///
        /// assert { table_type.type == Wasmer::Type::I32 }
        /// # "#); }
        /// ```
        pub fn r#type(&self) -> Type {
            x!()
        }

        /// Returns the minimum size of the table.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// table_type = Wasmer::TableType.new Wasmer::Type::I32, 7, 42
        ///
        /// assert { table_type.minimum == 7 }
        /// # "#); }
        /// ```
        pub fn minimum(&self) -> Integer {
            x!()
        }

        /// Returns the maximum size of the table if any.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// table_type = Wasmer::TableType.new Wasmer::Type::I32, 7, 42
        ///
        /// assert { table_type.maximum == 42 }
        /// # "#); }
        /// ```
        pub fn maximum(&self) -> Option<Integer> {
            x!()
        }
    }

    /// Represents the type of a module's export (not to be confused
    /// with an export of an instance). It is usually built from the
    /// [`Module::exports`] getter.
    pub struct ExportType;

    impl ExportType {
        /// Creates a new `ExportType`.
        ///
        /// `type` must be of type [`FunctionType`], [`MemoryType`],
        /// [`GlobalType`] or [`TableType`].
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// export_type = Wasmer::ExportType.new "foo", Wasmer::Function.new([Wasmer::Type::I32], [])
        /// # "#); }
        /// ```
        pub fn new(name: String, r#type: Any) -> Self {
            x!()
        }

        /// Returns the name of the export.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// export_type = Wasmer::ExportType.new "foo", Wasmer::Function.new([Wasmer::Type::I32], [])
        ///
        /// assert { export_type.name == "foo" }
        /// # "#); }
        /// ```
        pub fn name(&self) -> String {
            x!()
        }

        /// Returns the type of the export.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// export_type = Wasmer::ExportType.new "foo", Wasmer::Function.new([Wasmer::Type::I32], [])
        ///
        /// assert { export_type.type == Wasmer::Type::I32 }
        /// # "#); }
        /// ```
        pub fn r#type(&self) -> Type {
            x!()
        }
    }

    /// Represents the type of a module's import. It is usually built
    /// from the [`Module::imports`] getter.
    pub struct ImportType;

    impl ImportType {
        /// Creates a new `ImportType`.
        ///
        /// `type` must be of type [`FunctionType`], [`MemoryType`],
        /// [`GlobalType`] or [`TableType`].
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// import_type = Wasmer::ImportType.new "foo", "bar", Wasmer::Function.new([Wasmer::Type::I32], [])
        /// # "#); }
        /// ```
        pub fn new(module: String, name: String, r#type: Any) -> Self {
            x!()
        }

        /// Returns the module's name of the import.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// import_type = Wasmer::ImportType.new "foo", "bar", Wasmer::Function.new([Wasmer::Type::I32], [])
        /// # "#); }
        ///
        /// assert { import_type.module == "foo" }
        /// ```
        pub fn module(&self) -> String {
            x!()
        }

        /// Returns the name of the import.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// import_type = Wasmer::ImportType.new "foo", "bar", Wasmer::Function.new([Wasmer::Type::I32], [])
        /// # "#); }
        ///
        /// assert { import_type.name == "bar" }
        /// ```
        pub fn name(&self) -> String {
            x!()
        }

        /// Returns the type of the import.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// import_type = Wasmer::ImportType.new "foo", "bar", Wasmer::Function.new([Wasmer::Type::I32], [])
        /// # "#); }
        ///
        /// assert { import_type.type == Wasmer::Type::I32 }
        /// ```
        pub fn r#type(&self) -> Type {
            x!()
        }
    }

    /// The store represents all global state that can be manipulated
    /// by WebAssembly programs. It consists of the runtime
    /// representation of all instances of functions, tables,
    /// memories, and globals that have been allocated during the
    /// lifetime of the abstract machine.
    ///
    /// The `Store` holds the engine (that is —amongst many things— used
    /// to compile the WebAssembly bytes into a valid module
    /// artifact), in addition to the Tunables (that are used to
    /// create the memories, tables and globals). For the moment, it's
    /// not possible to tweak the engines and the compilers.
    ///
    /// Specification: <https://webassembly.github.io/spec/core/exec/runtime.html#store>
    ///
    /// # Example
    ///
    /// Use the store with the default engine and the default compiler:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    /// # "#); }
    /// ```
    pub struct Store;

    impl Store {
        /// Creates a new `Store`.
        pub fn new() -> Self {
            x!()
        }
    }

    /// A WebAssembly module contains stateless WebAssembly code that has
    /// already been compiled and can be instantiated multiple times.
    ///
    /// Creates a new WebAssembly `Module` given the configuration in the
    /// store.
    ///
    /// If the provided bytes are not WebAssembly-like (start with
    /// b"\0asm"), this function will try to to convert the bytes assuming
    /// they correspond to the WebAssembly text format.
    ///
    /// # Security
    ///
    /// Before the code is compiled, it will be validated using the store
    /// features.
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    ///
    /// ## Let's compile WebAssembly from bytes.
    /// wasm_bytes = "\x00asm\x01\x00\x00\x00";
    /// module_ = Wasmer::Module.new store, wasm_bytes
    ///
    /// ## Let's compile WebAssembly from WAT.
    /// module_ = Wasmer::Module.new store, "(module)"
    /// # "#); }
    /// ```
    pub struct Module;

    impl Module {
        /// Validates a new WebAssembly Module given the configuration
        /// in the [`Store`].
        ///
        /// This validation is normally pretty fast and checks the
        /// enabled WebAssembly features in the Store engine to assure
        /// deterministic validation of the `Module`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// wasm_bytes = "\x00asm\x01\x00\x00\x00";
        /// Wasmer::Module.validate Wasmer::Store.new, wasm_bytes
        /// # "#); }
        /// ```
        pub fn validate(store: Store, bytes: String) -> Boolean {
            x!()
        }

        /// Creates a new [`Module`].
        pub fn new(store: Store, bytes: String) -> Self {
            x!()
        }

        /// Get or set the current name of the module.
        ///
        /// This name is normally set in the WebAssembly bytecode by
        /// some compilers, but can be also overwritten.
        ///
        /// Not all modules have a name.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// store = Wasmer::Store.new
        ///
        /// ## Module with an existing name.
        /// assert { Wasmer::Module.new(store, "(module $moduleName)").name == "moduleName" }
        ///
        /// ## Module with no name.
        /// assert { Wasmer::Module.new(store, "(module)").name.nil? }
        ///
        /// ## Change the module's name.
        /// module_ = Wasmer::Module.new store, "(module $moduleName)"
        /// module_.name = "hello"
        ///
        /// assert { module_.name == "hello" }
        /// # "#); }
        /// ```
        pub fn name(&self, name: String) {
            x!()
        }

        /// Returns a list of [`ExportType`] objects, which represents
        /// all the exports of this module.
        ///
        /// The order of the exports is guaranteed to be the same as
        /// in the WebAssembly bytecode.
        ///
        /// # Example
        ///
        /// See the [`ExportType`] class to learn more.
        pub fn exports(&self) -> Array<ExportType> {
            x!()
        }

        /// Returns a list of [`ImportType`] objects, which represents
        /// all the imports of this module.
        ///
        /// The order of the imports is guaranteed to be the same as
        /// in the WebAssembly bytecode.
        ///
        /// # Example
        ///
        /// See the [`ImportType`] class to learn more.
        pub fn imports(&self) -> Array<ImportType> {
            x!()
        }

        /// Get the custom sections of the module given a `name`.
        ///
        /// # Important
        ///
        /// Following the WebAssembly specification, one name can have
        /// multiple custom sections. That's why a list of bytes is
        /// returned rather than bytes.
        ///
        /// Consequently, the empty list represents the absence of a
        /// custom section for the given name.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// bytes = IO.read "custom_sections.wasm", mode: "rb"
        /// module_ = Wasmer::Module.new Wasmer::Store.new, bytes
        ///
        /// assert { module_.custom_sections("easter_egg") == ["Wasmer"] }
        /// assert { module_.custom_sections("hello") == ["World!"] }
        /// assert { module_.custom_sections("foo") == [] }
        /// # "#); }
        /// ```
        pub fn custom_sections(&self, name: String) -> Array<String> {
            x!()
        }

        /// Serializes a module into a binary representation that the
        /// engine can later process via [`Module::deserialize`].
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// module_ = Wasmer::Module.new Wasmer::Store.new, "(module)"
        /// assert { module_.serialize.is_a?(String) }
        /// # "#); }
        /// ```
        pub fn serialize(&self) -> String {
            x!()
        }

        /// Deserializes a serialized module binary into a Module.
        ///
        /// **Note**: the module has to be serialized before with the
        /// serialize method.
        ///
        /// # Safety
        ///
        /// This function is inherently unsafe as the provided bytes:
        ///
        /// 1. Are going to be deserialized directly into Rust objects.
        /// 2. Contains the function assembly bodies and, if
        ///    intercepted, a malicious actor could inject code into
        ///    executable memory.
        ///
        /// And as such, the deserialize method is unsafe.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// store = Wasmer::Store.new
        ///
        /// serialized_module = Wasmer::Module.new(
        ///   store,
        ///   (<<~WAST)
        ///   (module
        ///     (func (export "function") (param i32 i64)))
        ///   WAST
        /// ).serialize
        ///
        /// module_ = Wasmer::Module.deserialize store, serialized_module
        /// serialized_module = nil
        ///
        /// exports = module_.exports
        ///
        /// assert { exports.length() == 1 }
        /// assert { exports[0].name == "function" }
        /// assert { exports[0].type.is_a?(Wasmer::FunctionType) }
        /// assert { exports[0].type.params == [Wasmer::Type::I32, Wasmer::Type::I64] }
        /// assert { exports[0].type.results == [] }
        /// # "#); }
        /// ```
        pub fn deserialize(bytes: String) -> Self {
            x!()
        }
    }

    /// A WebAssembly instance is a stateful, executable instance of a
    /// WebAssembly [`Module`].
    ///
    /// Instance objects contain all the exported WebAssembly
    /// functions, memories, tables and globals that allow interacting
    /// with WebAssembly.
    ///
    /// Specification:
    /// <https://webassembly.github.io/spec/core/exec/runtime.html#module-instances>
    ///
    /// # Examples
    ///
    /// Example without an import object. The following creates a
    /// module with a sum exported function that sum two integers.
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// module_ = Wasmer::Module.new(
    ///   Wasmer::Store.new,
    ///   (<<~WAST)
    ///   (module
    ///     (type (func (param i32 i32) (result i32)))
    ///     (func (type 0)
    ///       local.get 0
    ///       local.get 1
    ///       i32.add)
    ///     (export "sum" (func 0)))
    ///   WAST
    /// )
    /// instance = Wasmer::Instance.new module_, nil
    ///
    /// assert { instance.exports.sum.(1, 2) == 3 }
    /// # "#); }
    /// ```
    ///
    /// Example with an import object. The following creates a module
    /// that (i) imports a sum function from the `math` namespace, and
    /// (ii) exports an `add_one` function that adds 1 to any given
    /// integer (by using the `math.sum` function).
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// def sum(x, y)
    ///   x + y
    /// end
    ///
    /// store = Wasmer::Store.new
    /// module_ = Wasmer::Module.new(
    ///   store,
    ///   (<<~WAST)
    ///   (module
    ///     (import "math" "sum" (func $sum (param i32 i32) (result i32)))
    ///     (func (export "add_one") (param i32) (result i32)
    ///       local.get 0
    ///       i32.const 1
    ///       call $sum))
    ///   WAST
    /// )
    ///
    /// import_object = Wasmer::ImportObject.new
    /// import_object.register(
    ///   "math",
    ///   {
    ///     :sum => Wasmer::Function.new(
    ///        store,
    ///        method(:sum),
    ///        Wasmer::FunctionType.new([Wasmer::Type::I32, Wasmer::Type::I32], [Wasmer::Type::I32])
    ///     )
    ///   }
    /// )
    ///
    /// instance = Wasmer::Instance.new module_, import_object
    ///
    /// assert { instance.exports.add_one.(1) == 2 }
    /// # "#); }
    /// ```
    pub struct Instance;

    impl Instance {
        /// Creates a new `Instance`.
        pub fn new(module: Module, import_object: ImportObject) -> Self {
            x!()
        }

        /// Returns all the exported entities.
        pub fn exports(&self) -> Exports {
            x!()
        }
    }

    /// Represents all the exports of an instance. It is built by [`Instance::exports`].
    ///
    /// Exports can be of kind [`Function`], [`Global`], [`Table`], or [`Memory`].
    pub struct Exports;

    impl Exports {
        /// Returns the number of exports.
        pub fn length(&self) -> Integer {
            x!()
        }

        /// Returns either a [`Function`], a [`Memory`], a [`Global`],
        /// or a [`Table`] if the name for the export exists.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// module_ = Wasmer::Module.new(
        ///   Wasmer::Store.new,
        ///   (<<~WAST)
        ///   (module
        ///     (func (export "func") (param i32 i64))
        ///     (global (export "glob") i32 (i32.const 7))
        ///     (table (export "tab") 0 funcref)
        ///     (memory (export "mem") 1))
        ///   WAST
        /// )
        /// instance = Wasmer::Instance.new module_, nil
        /// exports = instance.exports
        ///
        /// assert { exports.respond_to? :func }
        /// assert { exports.respond_to? :glob }
        /// assert { exports.respond_to? :tab }
        /// assert { exports.respond_to? :mem }
        /// assert { not(exports.respond_to? :foo) }
        ///
        /// assert { exports.func.is_a?(Wasmer::Function) }
        /// assert { exports.mem.is_a?(Wasmer::Memory) }
        /// assert { exports.glob.is_a?(Wasmer::Global) }
        /// assert { exports.tab.is_a?(Wasmer::Table) }
        /// # "#); }
        /// ```
        pub fn method_missing(name: String) -> Any {
            x!()
        }
    }

    /// An `ImportObject` represents all of the import data used when
    /// instantiating a WebAssembly module.
    ///
    /// # Example
    ///
    /// Importing a function, `math.sum`, and call it through the
    /// exported `add_one` function:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// def sum(x, y)
    ///   x + y
    /// end
    ///
    /// store = Wasmer::Store.new
    /// module_ = Wasmer::Module.new(
    ///   store,
    ///   (<<~WAST)
    ///   (module
    ///     (import "math" "sum" (func $sum (param i32 i32) (result i32)))
    ///     (func (export "add_one") (param i32) (result i32)
    ///       local.get 0
    ///       i32.const 1
    ///       call $sum))
    ///   WAST
    /// )
    ///
    /// import_object = Wasmer::ImportObject.new
    /// import_object.register(
    ///   "math",
    ///   {
    ///     :sum => Wasmer::Function.new(
    ///       store,
    ///       method(:sum),
    ///       Wasmer::FunctionType.new([Wasmer::Type::I32, Wasmer::Type::I32], [Wasmer::Type::I32])
    ///     )
    ///   }
    /// )
    ///
    /// instance = Wasmer::Instance.new module_, import_object
    ///
    /// assert { instance.exports.add_one.(1) == 2 }
    /// # "#); }
    /// ```
    ///
    /// Importing a memory:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    /// module_ = Wasmer::Module.new(
    ///   store,
    ///   (<<~WAST)
    ///   (module
    ///     (import "env" "memory" (memory $memory 1))
    ///     (func (export "increment")
    ///       i32.const 0
    ///       i32.const 0
    ///       i32.load    ;; load 0
    ///       i32.const 1
    ///       i32.add     ;; add 1
    ///       i32.store   ;; store at 0
    ///       ))
    ///   WAST
    /// )
    ///
    /// memory = Wasmer::Memory.new store, Wasmer::MemoryType.new(1, nil, false)
    /// view = memory.uint8_view(0)
    ///
    /// import_object = Wasmer::ImportObject.new
    /// import_object.register(
    ///   "env",
    ///   {
    ///     :memory => memory,
    ///   }
    /// )
    ///
    /// instance = Wasmer::Instance.new module_, import_object
    ///
    /// assert { view[0] == 0 }
    ///
    /// instance.exports.increment.()
    /// assert { view[0] == 1 }
    ///
    /// instance.exports.increment.()
    /// assert { view[0] == 2 }
    /// # "#); }
    /// ```
    ///
    /// Importing a global:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    /// module_ = Wasmer::Module.new(
    ///   store,
    ///   (<<~WAST)
    ///     (module
    ///       (import "env" "global" (global $global (mut i32)))
    ///       (func (export "read_g") (result i32)
    ///         global.get $global)
    ///       (func (export "write_g") (param i32)
    ///         local.get 0
    ///         global.set $global))
    ///   WAST
    /// )
    ///
    /// global = Wasmer::Global.new store, Wasmer::Value.i32(7), true
    ///
    /// import_object = Wasmer::ImportObject.new
    /// import_object.register(
    ///   "env",
    ///   {
    ///     :global => global
    ///   }
    /// )
    ///
    /// instance = Wasmer::Instance.new module_, import_object
    ///
    /// assert { instance.exports.read_g.() == 7 }
    ///
    /// global.value = 153
    /// assert { instance.exports.read_g.() == 153 }
    ///
    /// instance.exports.write_g.(11)
    /// assert { global.value == 11 }
    /// # "#); }
    /// ```
    ///
    /// etc.
    pub struct ImportObject;

    impl ImportObject {
        /// Creates a new `ImportObject`.
        pub fn new() -> Self {
            x!()
        }

        /// Checks whether the import object contains a specific
        /// namespace.
        pub fn contains_namespace(&self, namespace_name: String) -> Boolean {
            x!()
        }

        /// Registers a set of [`Function`], [`Memory`], [`Global`] or
        /// [`Table`] to a particular namespace.
        ///
        /// See the [`ImportObject`]'s documentation to see more
        /// examples.
        pub fn register(&self, namespace_name: String, namespace: Hash<String, Any>) {
            x!()
        }
    }

    /// Represents a WebAssembly function instance.
    ///
    /// A function instance is the runtime representation of a
    /// function. It effectively is a closure of the original function
    /// (defined in either the host or the WebAssembly module) over
    /// the runtime [`Instance`] of its originating [`Module`].
    ///
    /// The module instance is used to resolve references to other
    /// definitions during executing of the function.
    ///
    /// Specification:
    /// <https://webassembly.github.io/spec/core/exec/runtime.html#function-instances>
    ///
    /// Note that the function can be invoked/called by the host only
    /// when it is an exported function (see [`Exports`] to see an
    /// example).
    ///
    /// # Example
    ///
    /// To build a `Function`, we need its type. `Function`
    /// understands `Symbol`, `Proc`, and `Lambda`.
    ///
    /// First, a function through a symbol:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// def foo(x)
    ///   x + 1
    /// end
    ///
    /// function = Wasmer::Function.new(
    ///   Wasmer::Store.new,
    ///   ## A symbol.
    ///   method(:foo),
    ///   Wasmer::FunctionType.new([Wasmer::Type::I32], [])
    /// )
    /// # "#); }
    /// ```
    ///
    /// Second, a function through a proc as a lambda:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// function = Wasmer::Function.new(
    ///   Wasmer::Store.new,
    ///   ## A lambda.
    ///   -> (x) { x + 1 },
    ///   Wasmer::FunctionType.new([Wasmer::Type::I32], [])
    /// )
    /// # "#); }
    /// ```
    ///
    /// Third, a function through a proc:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// function = Wasmer::Function.new(
    ///   Wasmer::Store.new,
    ///   ## A proc.
    ///   Proc.new { |x| x + 1 },
    ///   Wasmer::FunctionType.new([Wasmer::Type::I32], [])
    /// )
    /// # "#); }
    /// ```
    pub struct Function;

    impl Function {
        /// Creates a new `Function`. The `function` can be of kind
        /// `Symbol`, `Proc` or `Lambda`.
        pub fn new(store: Store, function: Any, function_type: FunctionType) -> Self {
            x!()
        }

        /// Calls the function with arguments. It returns zero or more results.
        pub fn call(x0: Any, x1: Any, x2: Any, etc: Any) -> Any {
            x!()
        }

        /// Returns the function type.
        pub fn r#type(&self) -> FunctionType {
            x!()
        }
    }

    /// A WebAssembly memory instance.
    ///
    /// A memory instance is the runtime representation of a linear
    /// memory. It consists of a vector of bytes and an optional
    /// maximum size.
    ///
    /// The length of the vector always is a multiple of the
    /// WebAssembly page size, which is defined to be the constant
    /// 65536 – abbreviated 64Ki. Like in a memory type, the maximum
    /// size in a memory instance is given in units of this page size.
    ///
    /// A memory created by the host or in WebAssembly code will be
    /// accessible and mutable from both host and WebAssembly.
    ///
    /// Specification: <https://webassembly.github.io/spec/core/exec/runtime.html#memory-instances>
    ///
    /// # Example
    ///
    /// Creates a [`Memory`] from scratch:
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    /// memory_type = Wasmer::MemoryType.new 3, 10, true
    /// memory = Wasmer::Memory.new store, memory_type
    ///
    /// assert { memory.size == 3 }
    /// # "#); }
    /// ```
    ///
    /// Gets a memory from the exports of an instance:
    ///
    /// ```rust,ignore
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// module_ = Wasmer::Module.new Wasmer::Store.new, wasm_bytes
    /// instance = Wasmer::Instance.new module, nil
    ///
    /// memory = instance.exports.memory
    /// # "#); }
    /// ```
    pub struct Memory;

    impl Memory {
        /// Creates a new `Memory`.
        pub fn new(store: Store, memory_type: MemoryType) -> Self {
            x!()
        }

        /// Returns the memory type.
        pub fn r#type(&self) -> MemoryType {
            x!()
        }

        /// Returns the size (in pages) of the memory.
        pub fn size(&self) -> Integer {
            x!()
        }

        /// Returns the size (in bytes) of the memory.
        pub fn data_size(&self) -> Integer {
            x!()
        }

        /// Grows memory by the specified amount of WebAssembly pages.
        ///
        /// # Example
        ///
        /// ```rust,ignore
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// memory = instance.exports.memory
        /// old_memory_size = memory.data_size
        ///
        /// memory.grow 1
        ///
        /// memory_size = memory.data_size
        ///
        /// assert { memory_size == 1179648 }
        /// assert { memory_size - old_memory_size == 65536 }
        /// # "#); }
        /// ```
        pub fn grow(&self, number_of_pages: Integer) -> Integer {
            x!()
        }

        /// Creates a read-and-write view over the memory data where
        /// elements are of kind `uint8`.
        pub fn uint8_view(&self) -> Uint8View {
            x!()
        }

        /// Creates a read-and-write view over the memory data where
        /// elements are of kind `int8`.
        pub fn int8_view(&self) -> Int8View {
            x!()
        }

        /// Creates a read-and-write view over the memory data where
        /// elements are of kind `uint16`.
        pub fn uint16_view(&self) -> Uint16View {
            x!()
        }

        /// Creates a read-and-write view over the memory data where
        /// elements are of kind `int16`.
        pub fn int16_view(&self) -> Int16View {
            x!()
        }

        /// Creates a read-and-write view over the memory data where
        /// elements are of kind `uint32`.
        pub fn uint32_view(&self) -> Uint32View {
            x!()
        }

        /// Creates a read-and-write view over the memory data where
        /// elements are of kind `int32`.
        pub fn int32_view(&self) -> Int32View {
            x!()
        }
    }

    pub struct Uint8View;
    pub struct Int8View;
    pub struct Uint16View;
    pub struct Int16View;
    pub struct Uint32View;
    pub struct Int32View;

    /// Represents a WebAssembly global instance.
    ///
    /// A global instance is the runtime representation of a global
    /// variable. It consists of an individual value and a flag
    /// indicating whether it is mutable.
    ///
    /// Specification: <https://webassembly.github.io/spec/core/exec/runtime.html#global-instances>
    ///
    /// # Example
    ///
    /// ```rust
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    /// global = Wasmer::Global.new store, Wasmer::Value.i32(42), false
    ///
    /// assert { global.value == 42 }
    ///
    /// type = global.type
    ///
    /// assert { type.type == Wasmer::Type::I32 }
    /// assert { type.mutable? == false }
    /// # "#); }
    /// ```
    pub struct Global;

    impl Global {
        /// Creates a new `Global`.
        pub fn new(store: Store, value: Value, mutable: Boolean) -> Self {
            x!()
        }

        /// Returns whether the global is muable.
        pub fn mutable(&self) -> Boolean {
            x!()
        }

        /// Get or set a new value to the global if mutable.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// store = Wasmer::Store.new
        /// global = Wasmer::Global.new store, Wasmer::Value.i32(42), true
        ///
        /// assert { global.value == 42 }
        ///
        /// type = global.type
        ///
        /// assert { type.type == Wasmer::Type::I32 }
        /// assert { type.mutable? == true }
        ///
        /// global.value = 153
        ///
        /// assert { global.value == 153 }
        /// # "#); }
        /// ```
        pub fn value(&self, value: Any) -> Any {
            x!()
        }

        /// Returns the global type.
        pub fn r#type(&self) -> GlobalType {
            x!()
        }
    }

    /// A WebAssembly table instance.
    ///
    /// The Table class is an array-like structure representing a
    /// WebAssembly table, which stores function references.
    ///
    /// A table created by the host or in WebAssembly code will be
    /// accessible and mutable from both host and WebAssembly.
    ///
    /// Specification: <https://webassembly.github.io/spec/core/exec/runtime.html#table-instances>
    pub struct Table;

    impl Table {
        /// Creates a new `Table`.
        pub fn new(store: Store, table_type: TableType, initia_value: Value) -> Self {
            x!()
        }
    }

    /// Represents a WebAssembly value of a specific type.
    ///
    /// Most of the time, the types for WebAssembly values will be
    /// inferred. When it's not possible, the `Value` class is
    /// necessary.
    pub struct Value;

    impl Value {
        /// Creates a new `Value` containing a `int32`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// Wasmer::Value.i32(7)
        /// # "#); }
        /// ```
        pub fn i32(value: Integer) -> Self {
            x!()
        }

        /// Creates a new `Value` containing a `int64`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// Wasmer::Value.i64(7)
        /// # "#); }
        /// ```
        pub fn i64(value: Integer) -> Self {
            x!()
        }

        /// Creates a new `Value` containing a `float32`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// Wasmer::Value.f32(4.2)
        /// # "#); }
        /// ```
        pub fn f32(value: Float) -> Self {
            x!()
        }

        /// Creates a new `Value` containing a `float64`.
        ///
        /// # Example
        ///
        /// ```rust
        /// # fn main() { rutie_test::test_ruby!(r#"
        /// Wasmer::Value.f64(4.2)
        /// # "#); }
        /// ```
        pub fn f64(value: Float) -> Self {
            x!()
        }
    }

    /// Wasmer's [WASI] implementation.
    ///
    /// From the user perspective, WASI is a bunch of imports. To
    /// generate the appropriated imports, you can use
    /// [`StateBuilder`](Wasi::StateBuilder) to build an
    /// [`Environment`](Wasi::Environment). This environment holds the
    /// WASI memory, and can be used to generate a valid
    /// [`ImportObject`]. This last one can be passed to [`Instance`]
    /// to instantiate a [`Module`] that needs WASI support.
    ///
    /// [WASI]: https://github.com/WebAssembly/WASI
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// # fn main() { rutie_test::test_ruby!(r#"
    /// store = Wasmer::Store.new
    /// module_ = Wasmer::Module.new store, bytes
    ///
    /// ## Get the WASI version.
    /// wasi_version = Wasmer::Wasi::get_version module_, true
    ///
    /// ## Build a WASI environment for the imports.
    /// wasi_env = Wasmer::Wasi::StateBuilder.new("test-program")
    ///              .argument("--foo")
    ///              .environments({"ABC" => "DEF", "X" => "YZ"})
    ///              .map_directory("the_host_directory", ".")
    ///              .finalize
    ///
    /// ## Generate an `ImportObject` for the WASI environment.
    /// import_object = wasi_env.generate_import_object store, wasi_version
    ///
    /// ## Now we are ready to instantiate the module.
    /// instance = Wasmer::Instance.new module_, import_object
    ///
    /// # Here we go, let's start the program.
    /// instance.exports._start.()
    /// # "#); }
    /// ```
    pub mod Wasi {
        use super::*;
        use crate::doc::Ruby::*;

        /// Represents a WASI version.
        #[allow(non_camel_case_types)]
        pub enum Version {
            LATEST_VERSION,
            SNAPSHOT0,
            SNAPSHOT1,
        }

        /// Convenient builder API for configuring WASI.
        ///
        /// Use the constructor to pass the arguments, environments,
        /// preopen directories and map directories, or use the
        /// associated methods to build the state step-by-steps.
        pub struct StateBuilder;

        impl StateBuilder {
            pub fn new(program_name: String) -> Self {
                x!()
            }

            /// Adds an argument.
            ///
            /// Arguments must not contain the nul (`0x0`) byte.
            pub fn argument(&mut self, argument: String) -> Self {
                x!()
            }

            /// Adds multiple arguments.
            ///
            /// Arguments must not contain the nul (`0x0`) byte.
            pub fn arguments(&mut self, arguments: Array<String>) -> Self {
                x!()
            }

            /// Add an environment variable pair.
            ///
            /// Environment variable keys and values must not contain
            /// the byte `=` (`0x3d`) or null (`0x0`).
            pub fn environment(&mut self, key: String, value: String) -> Self {
                x!()
            }

            /// Add environment variable pairs.
            ///
            /// Environment variable keys and values must not contain
            /// the byte `=` (`0x3d`) or null (`0x0`).
            pub fn environments(&mut self, pairs: Hash<String, String>) -> Self {
                x!()
            }

            /// Preopen a directory with a different name exposed to the WASI.
            ///
            /// This opens the given directories at the virtual root,
            /// `/`, and allows the WASI module to read and write to the
            /// given directories.
            pub fn preopen_directory(&mut self, alias: String, value: String) -> Self {
                x!()
            }

            /// Preopen directories with a different name exposed to the WASI.
            ///
            /// This opens the given directories at the virtual root,
            /// `/`, and allows the WASI module to read and write to the
            /// given directories.
            pub fn preopen_directories(&mut self, pairs: Hash<String, String>) -> Self {
                x!()
            }

            /// Preopen a directory with a different name exposed to the WASI.
            pub fn map_directory(&mut self, alias: String, value: String) -> Self {
                x!()
            }

            /// Preopen directories with a different name exposed to the WASI.
            pub fn map_directories(&mut self, pairs: Hash<String, String>) -> Self {
                x!()
            }

            /// Produces a WASI [`Environment`] based on this state builder.
            pub fn finalize(&mut self) -> Environment {
                x!()
            }
        }

        /// The environment provided to the WASI imports.
        ///
        /// To build it, use [`StateBuilder`]. See
        /// [`StateBuilder::finalize`] to learn more.
        pub struct Environment;

        impl Environment {
            /// Create an [`ImportObject`] with an existing
            /// [`Environment`]. The import object will be different
            /// according to the WASI version.
            ///
            /// Use the [`Version`] enum to use a specific WASI
            /// version, or use [`get_version`] to read the WASI
            /// version from a [`Module`].
            pub fn generate_import_object(
                &self,
                store: Store,
                wasi_version: Version,
            ) -> ImportObject {
                x!()
            }
        }

        /// Detect the version of WASI being used based on the import
        /// namespaces.
        ///
        /// A strict detection expects that all imports live in a
        /// single WASI namespace. A non-strict detection expects that
        /// at least one WASI namespace exits to detect the
        /// version. Note that the strict detection is faster than the
        /// non-strict one.
        pub fn get_version(module: Module, strict: Boolean) -> Version {
            x!()
        }
    }
}