wasm-bindgen-utils-macros 0.1.2

Provides helper proc macros for wasm-bindgen-utils
Documentation
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
use quote::quote;
use std::ops::Deref;
use proc_macro2::{Span, TokenStream};
use syn::{punctuated::Punctuated, token::Comma, Block, FnArg, Ident, ImplItemFn, ItemFn, Meta, Type};

/// Enum to specify whether a function has a self receiver parameter
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum SelfReceiver {
    /// Function has a self receiver (&self, &mut self, self)
    Instance,
    /// Function has no self receiver (static method or standalone function)
    Static,
}

/// Type alias for the complex return type of process_function_parameters
type ProcessFunctionParametersResult = syn::Result<(
    SelfReceiver,
    Punctuated<FnArg, Comma>,
    Punctuated<FnArg, Comma>,
)>;

/// Enum to specify the type of the function
pub enum FunctionType<'a> {
    /// Function is a method within an impl block (can be instance or static)
    Method(&'a ImplItemFn),
    /// Function is a standalone (outside any impl block)
    Standalone(&'a ItemFn),
}

/// Configuration for building a wasm export function
pub struct WasmExportFunctionBuilderConfig {
    pub forward_attrs: Vec<Meta>,
    pub return_type: Type,
    pub preserve_js_class: Option<Span>,
}

/// Provides functionalities to build methods/functions that are going to be exposed to wasm bindgen output
pub struct WasmExportFunctionBuilder;
impl WasmExportFunctionBuilder {
    /// Builds a wasm export method from the given method and configurations, that is,
    /// creating a new method that is exposed to wasm bindgen that calls the original
    /// method and converting the result of that call into a WasmEncodedResult and also
    /// forwards any wasm bindgen attributes to the exporting method
    pub fn build_export_method(
        method: &ImplItemFn,
        config: WasmExportFunctionBuilderConfig,
    ) -> syn::Result<ImplItemFn> {
        let WasmExportFunctionBuilderConfig {
            forward_attrs,
            return_type,
            preserve_js_class,
        } = config;

        // create exported method from original
        let mut export_method = method.clone();

        // set exported method name, it is appended with __wasm_export
        export_method.sig.ident = Self::populate_name(&method.sig.ident);

        // process parameters to handle wasm_export attributes
        let (_, processed_params, _) = Self::process_function_parameters(&method.sig.inputs)?;
        export_method.sig.inputs = processed_params;

        // extract doc comments from original method
        let doc_comments = Self::extract_doc_comments(&method.attrs);

        // forward attributes for exported method + allow none snake_case + doc comments
        export_method.attrs = Vec::new();
        export_method.attrs.extend(doc_comments);
        export_method
            .attrs
            .push(syn::parse_quote!(#[allow(non_snake_case)]));
        if !forward_attrs.is_empty() {
            export_method.attrs.push(syn::parse_quote!(
                #[wasm_bindgen(#(#forward_attrs),*)]
            ));
        }

        // set exported method return type as JsValue if
        // preserve_js_class is true else set it to WasmEncodedResult
        if preserve_js_class.is_some() {
            export_method.sig.output = syn::parse_quote!(-> JsValue);
        } else {
            export_method.sig.output = syn::parse_quote!(-> WasmEncodedResult<#return_type>);
        }

        // build the method body by calling the original method
        export_method.block =
            Self::build_fn_body_unified(FunctionType::Method(method), preserve_js_class.is_some());

        Ok(export_method)
    }

    /// Builds a wasm export standalone function from the given function and configurations,
    /// that is, creating a new function that is exposed to wasm bindgen that calls the original
    /// function and converting the result of that call into a WasmEncodedResult and also forwards
    /// any wasm bindgen attributes to the exporting function
    pub fn build_export_function(
        func: &ItemFn,
        config: WasmExportFunctionBuilderConfig,
    ) -> syn::Result<ItemFn> {
        let WasmExportFunctionBuilderConfig {
            forward_attrs,
            return_type,
            preserve_js_class,
        } = config;

        // create the export function from original
        let mut export_fn = func.clone();

        // set exported function name, it is appended with __wasm_export
        export_fn.sig.ident = Self::populate_name(&func.sig.ident);

        // process parameters to handle wasm_export attributes
        let (_, processed_params, _) = Self::process_function_parameters(&func.sig.inputs)?;
        export_fn.sig.inputs = processed_params;

        // extract doc comments from original function
        let doc_comments = Self::extract_doc_comments(&func.attrs);

        // forward attributes for exported function + allow none snake_case + doc comments
        export_fn.attrs = Vec::new();
        export_fn.attrs.extend(doc_comments);
        export_fn
            .attrs
            .push(syn::parse_quote!(#[allow(non_snake_case)]));
        if !forward_attrs.is_empty() {
            export_fn.attrs.push(syn::parse_quote!(
                #[wasm_bindgen(#(#forward_attrs),*)]
            ));
        } else {
            // Add wasm_bindgen even if no specific attrs were forwarded
            export_fn.attrs.push(syn::parse_quote!(#[wasm_bindgen]));
        }

        // set exported function return type as JsValue if
        // preserve_js_class is true else set it to WasmEncodedResult
        if preserve_js_class.is_some() {
            export_fn.sig.output = syn::parse_quote!(-> JsValue);
        } else {
            export_fn.sig.output = syn::parse_quote!(-> WasmEncodedResult<#return_type>);
        }

        // build the function body by calling the original function
        export_fn.block = Box::new(Self::build_fn_body_unified(
            FunctionType::Standalone(func),
            preserve_js_class.is_some(),
        ));

        Ok(export_fn)
    }

    /// Creates a function call expression (export function/method body) based on the given context (method or standalone)
    pub fn build_fn_body_unified(function_type: FunctionType, preserve_js_class: bool) -> Block {
        // build the base call_expr based on the function type
        let (call_expr, is_async) = match function_type {
            FunctionType::Method(method) => {
                let fn_name = &method.sig.ident;
                let (self_receiver, args) = Self::collect_function_arguments(&method.sig.inputs);

                let call_expr = match self_receiver {
                    SelfReceiver::Instance => {
                        // instance method call: self.method_name(...)
                        quote! { self.#fn_name(#(#args),*) }
                    }
                    SelfReceiver::Static => {
                        // static method call: Self::method_name(...)
                        quote! { Self::#fn_name(#(#args),*) }
                    }
                };

                // return base call expression and asyncness
                (call_expr, method.sig.asyncness.is_some())
            }
            FunctionType::Standalone(function) => {
                let fn_name = &function.sig.ident;
                let (_, args) = Self::collect_function_arguments(&function.sig.inputs);

                // return base call expression and asyncness
                (
                    quote! { #fn_name(#(#args),*) },
                    function.sig.asyncness.is_some(),
                )
            }
        };

        // append .await if the function is async, and .into() in
        // all cases to convert rust Result to WasmEncodedResult
        let call_expr = if is_async {
            quote!( #call_expr.await.into() )
        } else {
            quote!( #call_expr.into() )
        };

        // manually build a js obj that resembles the WasmEncodedResult to preserve
        // the class if preserve_js_class attr was detected and return it as JsValue
        // otherwise return the call expression unchanged
        if preserve_js_class {
            syn::parse_quote!({
                // bring necessary items in scope
                use js_sys::{Reflect, Object};

                // create empty js obj
                let obj = Object::new();

                // call the expression and proceed based on its result
                //
                // populate "value" field with class instance and "error" field with undefined if
                // result is Ok and vice versa if result is Err, this js obj will resemble the
                // WasmEncodedResult (that normally is serialized through serde_wasm_bindgen which
                // results in plain js objects for nested types) type in js/ts with preserving the
                // class instance for value field
                //
                // "Reflect::set" can only fail if the obj is sealed or frozen which is not the case
                // here, so it is safe to use unwrap, "Reflect::set" is similar to "obj[key] = value"
                // in js, for more info read MDN docs for Reflect
                let result = #call_expr;
                match result {
                    Ok(value) => {
                        Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                        Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                    }
                    Err(error) => {
                        let wasm_error: WasmEncodedError = error.into();
                        Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                        Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                    }
                };

                // return as JsValue
                obj.into()
            })
        } else {
            // parses the call expression token stream to syn::Block
            syn::parse_quote!({
                #call_expr
            })
        }
    }

    /// Collects function arguments and determines if the function has a self receiver
    pub fn collect_function_arguments(
        inputs: &Punctuated<FnArg, Comma>,
    ) -> (SelfReceiver, Vec<TokenStream>) {
        let mut self_receiver = SelfReceiver::Static;
        let args = inputs
            .iter()
            .filter_map(|arg| match arg {
                FnArg::Receiver(_) => {
                    self_receiver = SelfReceiver::Instance;
                    None
                }
                FnArg::Typed(pat_type) => {
                    let pat = pat_type.pat.deref();
                    Some(quote! { #pat })
                }
            })
            .collect();

        (self_receiver, args)
    }

    /// Processes function parameters by extracting wasm_export attributes and converting them to wasm_bindgen
    /// Returns: (self_receiver, processed_inputs_for_wrapper, cleaned_inputs_for_original)
    pub fn process_function_parameters(
        inputs: &Punctuated<FnArg, Comma>,
    ) -> ProcessFunctionParametersResult {
        let mut self_receiver = SelfReceiver::Static;
        let mut processed_inputs = Punctuated::new();
        let mut cleaned_inputs = Punctuated::new();

        for input in inputs {
            match input {
                FnArg::Receiver(receiver) => {
                    self_receiver = SelfReceiver::Instance;

                    // Check if receiver has any wasm_export attributes - this should be an error
                    for attr in &receiver.attrs {
                        if attr.path().is_ident("wasm_export") {
                            return Err(syn::Error::new_spanned(
                                attr,
                                "wasm_export parameter attributes cannot be used on receiver parameters (self, &self, &mut self)"
                            ));
                        }
                    }

                    processed_inputs.push(input.clone());
                    cleaned_inputs.push(input.clone());
                }
                FnArg::Typed(pat_type) => {
                    let mut new_pat_type = pat_type.clone();
                    let mut cleaned_pat_type = pat_type.clone();

                    // Process attributes on this parameter
                    let mut wasm_bindgen_attrs = Vec::new();
                    let mut other_attrs = Vec::new();

                    for attr in &pat_type.attrs {
                        if attr.path().is_ident("wasm_export") {
                            // Parse wasm_export attribute and convert to wasm_bindgen
                            let processed_attrs = Self::process_parameter_wasm_export_attr(attr)?;
                            wasm_bindgen_attrs.extend(processed_attrs);
                            // Don't include wasm_export attrs in cleaned version
                        } else {
                            other_attrs.push(attr.clone());
                        }
                    }

                    // For wrapper function: combine processed wasm_bindgen attrs with other attrs
                    new_pat_type.attrs.clone_from(&other_attrs);
                    if !wasm_bindgen_attrs.is_empty() {
                        new_pat_type
                            .attrs
                            .push(syn::parse_quote!(#[wasm_bindgen(#(#wasm_bindgen_attrs),*)]));
                    }

                    // For original function: only other attrs (wasm_export removed)
                    cleaned_pat_type.attrs = other_attrs;

                    processed_inputs.push(FnArg::Typed(new_pat_type));
                    cleaned_inputs.push(FnArg::Typed(cleaned_pat_type));
                }
            }
        }

        Ok((self_receiver, processed_inputs, cleaned_inputs))
    }

    /// Processes a single wasm_export attribute on a parameter and converts it to wasm_bindgen format
    fn process_parameter_wasm_export_attr(attr: &syn::Attribute) -> syn::Result<Vec<syn::Meta>> {
        use syn::{punctuated::Punctuated, token::Comma, Meta};
        use super::{error::extend_err_msg, attrs::AttrKeys};

        let mut wasm_bindgen_metas = Vec::new();
        let mut seen_param_description = false;
        let mut seen_unchecked_param_type = false;
        let mut seen_js_name = false;

        // Handle empty wasm_export attribute
        if matches!(attr.meta, Meta::Path(_)) {
            return Ok(wasm_bindgen_metas);
        }

        // Parse the attribute contents
        let nested_metas = attr.parse_args_with(Punctuated::<Meta, Comma>::parse_terminated)?;

        for meta in nested_metas {
            if let Some(ident) = meta.path().get_ident() {
                match ident.to_string().as_str() {
                    "param_description" => {
                        // Check for duplicate param_description
                        if seen_param_description {
                            return Err(syn::Error::new_spanned(
                                meta,
                                "duplicate `param_description` attribute",
                            ));
                        }
                        seen_param_description = true;

                        // Validate that it has a string literal value
                        if let syn::Expr::Lit(syn::ExprLit {
                            lit: syn::Lit::Str(_),
                            ..
                        }) = &meta
                            .require_name_value()
                            .map_err(extend_err_msg(" and it must be a string literal"))?
                            .value
                        {
                            // Convert param_description from wasm_export to wasm_bindgen format
                            wasm_bindgen_metas.push(meta);
                        } else {
                            return Err(syn::Error::new_spanned(meta, "expected string literal"));
                        }
                    }
                    AttrKeys::UNCHECKED_PARAM_TYPE => {
                        // Check for duplicate unchecked_param_type
                        if seen_unchecked_param_type {
                            return Err(syn::Error::new_spanned(
                                meta,
                                "duplicate `unchecked_param_type` attribute",
                            ));
                        }
                        seen_unchecked_param_type = true;

                        // Validate that it has a string literal value
                        if let syn::Expr::Lit(syn::ExprLit {
                            lit: syn::Lit::Str(_),
                            ..
                        }) = &meta
                            .require_name_value()
                            .map_err(extend_err_msg(" and it must be a string literal"))?
                            .value
                        {
                            // Convert unchecked_param_type from wasm_export to wasm_bindgen format
                            wasm_bindgen_metas.push(meta);
                        } else {
                            return Err(syn::Error::new_spanned(meta, "expected string literal"));
                        }
                    }
                    AttrKeys::JS_NAME => {
                        // Check for duplicate js_name
                        if seen_js_name {
                            return Err(syn::Error::new_spanned(
                                meta,
                                "duplicate `js_name` attribute",
                            ));
                        }
                        seen_js_name = true;

                        // Validate that it has a string literal value
                        if let syn::Expr::Lit(syn::ExprLit {
                            lit: syn::Lit::Str(_),
                            ..
                        }) = &meta
                            .require_name_value()
                            .map_err(extend_err_msg(" and it must be a string literal"))?
                            .value
                        {
                            // Convert js_name from wasm_export to wasm_bindgen format
                            wasm_bindgen_metas.push(meta);
                        } else {
                            return Err(syn::Error::new_spanned(meta, "expected string literal"));
                        }
                    }
                    _ => {
                        // Unknown attributes are ignored (could be forwarded in the future)
                    }
                }
            }
        }

        Ok(wasm_bindgen_metas)
    }

    /// Cleans wasm_export attributes from function parameters (for cleaning original functions)
    pub fn clean_parameter_attributes(inputs: &mut Punctuated<FnArg, Comma>) {
        for input in inputs.iter_mut() {
            if let FnArg::Typed(pat_type) = input {
                pat_type
                    .attrs
                    .retain(|attr| !attr.path().is_ident("wasm_export"));
            }
        }
    }

    /// Extracts doc comments (/// ...) from function/method attributes
    pub fn extract_doc_comments(attrs: &[syn::Attribute]) -> Vec<syn::Attribute> {
        attrs
            .iter()
            .filter(|attr| {
                // Check if attribute is a doc comment (starts with "doc")
                attr.path().is_ident("doc")
            })
            .cloned()
            .collect()
    }

    /// Creates the function name from the original name, it is appended by __wasm_export
    pub fn populate_name(org_fn_ident: &Ident) -> Ident {
        Ident::new(
            &format!("{}__wasm_export", org_fn_ident),
            org_fn_ident.span(),
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::str::FromStr;
    use proc_macro2::{Span, TokenStream};
    use syn::{parse::Parser, parse_quote};
    use quote::ToTokens;

    #[test]
    fn test_from_method() {
        // without preserve js class
        let method: ImplItemFn = parse_quote!(
            pub async fn some_fn(arg1: String) -> Result<SomeType, Error> {}
        );
        let wasm_export_fn_config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(some_forward_attr)],
            return_type: parse_quote!(SomeType),
            preserve_js_class: None,
        };
        let result =
            WasmExportFunctionBuilder::build_export_method(&method, wasm_export_fn_config).unwrap();
        let expected = parse_quote!(
            #[allow(non_snake_case)]
            #[wasm_bindgen(some_forward_attr)]
            pub async fn some_fn__wasm_export(arg1: String) -> WasmEncodedResult<SomeType> {
                Self::some_fn(arg1).await.into()
            }
        );
        assert_eq!(result, expected);

        // with preserve js class
        let method: ImplItemFn = parse_quote!(
            pub async fn some_fn(arg1: String) -> Result<SomeType, Error> {}
        );
        let wasm_export_fn_config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(some_forward_attr)],
            return_type: parse_quote!(SomeType),
            preserve_js_class: Some(Span::call_site()),
        };
        let result =
            WasmExportFunctionBuilder::build_export_method(&method, wasm_export_fn_config).unwrap();
        let expected = parse_quote!(
            #[allow(non_snake_case)]
            #[wasm_bindgen(some_forward_attr)]
            pub async fn some_fn__wasm_export(arg1: String) -> JsValue {
                use js_sys::{Reflect, Object};
                let obj = Object::new();
                let result = Self::some_fn(arg1).await.into();
                match result {
                    Ok(value) => {
                        Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                        Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED)
                            .unwrap();
                    }
                    Err(error) => {
                        let wasm_error: WasmEncodedError = error.into();
                        Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED)
                            .unwrap();
                        Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into())
                            .unwrap();
                    }
                };
                obj.into()
            }
        );
        assert_eq!(result, expected);
    }

    #[test]
    fn test_from_standalone() {
        // without preserve js class
        let func: ItemFn = parse_quote!(
            pub async fn some_fn(arg1: String) -> Result<SomeType, Error> {}
        );
        let wasm_export_fn_config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(some_forward_attr)],
            return_type: parse_quote!(SomeType),
            preserve_js_class: None,
        };
        let result =
            WasmExportFunctionBuilder::build_export_function(&func, wasm_export_fn_config).unwrap();
        let expected = parse_quote!(
            #[allow(non_snake_case)]
            #[wasm_bindgen(some_forward_attr)]
            pub async fn some_fn__wasm_export(arg1: String) -> WasmEncodedResult<SomeType> {
                some_fn(arg1).await.into()
            }
        );
        assert_eq!(result, expected);

        // with preserve js class
        let func: ItemFn = parse_quote!(
            pub async fn some_fn(arg1: String) -> Result<SomeType, Error> {}
        );
        let wasm_export_fn_config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(some_forward_attr)],
            return_type: parse_quote!(SomeType),
            preserve_js_class: Some(Span::call_site()),
        };
        let result =
            WasmExportFunctionBuilder::build_export_function(&func, wasm_export_fn_config).unwrap();
        let expected = parse_quote!(
            #[allow(non_snake_case)]
            #[wasm_bindgen(some_forward_attr)]
            pub async fn some_fn__wasm_export(arg1: String) -> JsValue {
                use js_sys::{Reflect, Object};
                let obj = Object::new();
                let result = some_fn(arg1).await.into();
                match result {
                    Ok(value) => {
                        Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                        Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED)
                            .unwrap();
                    }
                    Err(error) => {
                        let wasm_error: WasmEncodedError = error.into();
                        Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED)
                            .unwrap();
                        Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into())
                            .unwrap();
                    }
                };
                obj.into()
            }
        );
        assert_eq!(result, expected);
    }

    #[test]
    fn test_build_fn_body_unified_method_async() {
        // async method static
        let method: ImplItemFn = parse_quote!(
            pub async fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), false);
        let expected: Block = parse_quote!({ Self::some_name((arg1, arg2)).await.into() });
        assert_eq!(result, expected);

        // async method with self
        let method: ImplItemFn = parse_quote!(
            pub async fn some_name(&self, (arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), false);
        let expected: Block = parse_quote!({ self.some_name((arg1, arg2)).await.into() });
        assert_eq!(result, expected);

        // async method static with preserve class
        let method: ImplItemFn = parse_quote!(
            pub async fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), true);
        let expected: Block = parse_quote!({
            use js_sys::{Reflect, Object};
            let obj = Object::new();
            let result = Self::some_name((arg1, arg2)).await.into();
            match result {
                Ok(value) => {
                    Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                }
                Err(error) => {
                    let wasm_error: WasmEncodedError = error.into();
                    Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                }
            };
            obj.into()
        });
        assert_eq!(result, expected);

        // async method self with preserve class
        let method: ImplItemFn = parse_quote!(
            pub async fn some_name(&self, (arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), true);
        let expected: Block = parse_quote!({
            use js_sys::{Reflect, Object};
            let obj = Object::new();
            let result = self.some_name((arg1, arg2)).await.into();
            match result {
                Ok(value) => {
                    Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                }
                Err(error) => {
                    let wasm_error: WasmEncodedError = error.into();
                    Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                }
            };
            obj.into()
        });
        assert_eq!(result, expected);
    }

    #[test]
    fn test_build_fn_body_unified_method_sync() {
        // sync method static
        let method: ImplItemFn = parse_quote!(
            pub fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), false);
        let expected: Block = parse_quote!({ Self::some_name((arg1, arg2)).into() });
        assert_eq!(result, expected);

        // sync method with self
        let method: ImplItemFn = parse_quote!(
            pub fn some_name(&self, (arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), false);
        let expected: Block = parse_quote!({ self.some_name((arg1, arg2)).into() });
        assert_eq!(result, expected);

        // sync method static with preserve class
        let method: ImplItemFn = parse_quote!(
            pub fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), true);
        let expected: Block = parse_quote!({
            use js_sys::{Reflect, Object};
            let obj = Object::new();
            let result = Self::some_name((arg1, arg2)).into();
            match result {
                Ok(value) => {
                    Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                }
                Err(error) => {
                    let wasm_error: WasmEncodedError = error.into();
                    Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                }
            };
            obj.into()
        });
        assert_eq!(result, expected);

        // sync method self with preserve class
        let method: ImplItemFn = parse_quote!(
            pub fn some_name(&self, (arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result =
            WasmExportFunctionBuilder::build_fn_body_unified(FunctionType::Method(&method), true);
        let expected: Block = parse_quote!({
            use js_sys::{Reflect, Object};
            let obj = Object::new();
            let result = self.some_name((arg1, arg2)).into();
            match result {
                Ok(value) => {
                    Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                }
                Err(error) => {
                    let wasm_error: WasmEncodedError = error.into();
                    Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                }
            };
            obj.into()
        });
        assert_eq!(result, expected);
    }

    #[test]
    fn test_build_fn_body_unified_standalone_function_async() {
        // async function
        let function: ItemFn = parse_quote!(
            pub async fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result = WasmExportFunctionBuilder::build_fn_body_unified(
            FunctionType::Standalone(&function),
            false,
        );
        let expected: Block = parse_quote!({ some_name((arg1, arg2)).await.into() });
        assert_eq!(result, expected);

        // async function with preserve class
        let function: ItemFn = parse_quote!(
            pub async fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result = WasmExportFunctionBuilder::build_fn_body_unified(
            FunctionType::Standalone(&function),
            true,
        );
        let expected: Block = parse_quote!({
            use js_sys::{Reflect, Object};
            let obj = Object::new();
            let result = some_name((arg1, arg2)).await.into();
            match result {
                Ok(value) => {
                    Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                }
                Err(error) => {
                    let wasm_error: WasmEncodedError = error.into();
                    Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                }
            };
            obj.into()
        });
        assert_eq!(result, expected);
    }

    #[test]
    fn test_build_fn_body_unified_standalone_function_sync() {
        // sync function
        let function: ItemFn = parse_quote!(
            pub fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result = WasmExportFunctionBuilder::build_fn_body_unified(
            FunctionType::Standalone(&function),
            false,
        );
        let expected: Block = parse_quote!({ some_name((arg1, arg2)).into() });
        assert_eq!(result, expected);

        // sync function with preserve class
        let function: ItemFn = parse_quote!(
            pub fn some_name((arg1, arg2): (String, u8)) -> Result<SomeType, Error> {
                Ok(SomeType::new())
            }
        );
        let result = WasmExportFunctionBuilder::build_fn_body_unified(
            FunctionType::Standalone(&function),
            true,
        );
        let expected: Block = parse_quote!({
            use js_sys::{Reflect, Object};
            let obj = Object::new();
            let result = some_name((arg1, arg2)).into();
            match result {
                Ok(value) => {
                    Reflect::set(&obj, &JsValue::from_str("value"), &value.into()).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &JsValue::UNDEFINED).unwrap();
                }
                Err(error) => {
                    let wasm_error: WasmEncodedError = error.into();
                    Reflect::set(&obj, &JsValue::from_str("value"), &JsValue::UNDEFINED).unwrap();
                    Reflect::set(&obj, &JsValue::from_str("error"), &wasm_error.into()).unwrap();
                }
            };
            obj.into()
        });
        assert_eq!(result, expected);
    }

    #[test]
    fn test_collect_function_arguments() {
        // without self argument
        let stream = TokenStream::from_str(r#"arg1: String, arg2: u8"#).unwrap();
        let inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();
        let result = WasmExportFunctionBuilder::collect_function_arguments(&inputs);
        let expected = (
            SelfReceiver::Static,
            vec![
                TokenStream::from_str(r#"arg1"#).unwrap(),
                TokenStream::from_str(r#"arg2"#).unwrap(),
            ],
        );
        assert_eq!(result.0, expected.0);
        assert_eq!(result.1.len(), expected.1.len());
        assert!(result
            .1
            .iter()
            .zip(expected.1.iter())
            .all(|(res, exp)| { res.to_string() == exp.to_string() }));

        // with self argument
        let stream = TokenStream::from_str(r#"&self, arg1: String"#).unwrap();
        let inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();
        let result = WasmExportFunctionBuilder::collect_function_arguments(&inputs);
        let expected = (
            SelfReceiver::Instance,
            vec![TokenStream::from_str(r#"arg1"#).unwrap()],
        );
        assert_eq!(result.0, expected.0);
        assert_eq!(result.1.len(), expected.1.len());
        assert!(result
            .1
            .iter()
            .zip(expected.1.iter())
            .all(|(res, exp)| { res.to_string() == exp.to_string() }));
    }

    #[test]
    fn test_populate_name() {
        let org_fn_ident = Ident::new("some_name", Span::call_site());
        let result = WasmExportFunctionBuilder::populate_name(&org_fn_ident);
        assert_eq!(result.to_string(), "some_name__wasm_export");
    }

    #[test]
    fn test_process_function_parameters_basic() {
        // Test basic parameter processing without wasm_export attributes
        let stream = TokenStream::from_str(r#"arg1: String, arg2: u32"#).unwrap();
        let inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();
        let result = WasmExportFunctionBuilder::process_function_parameters(&inputs).unwrap();

        assert_eq!(result.0, SelfReceiver::Static); // no self receiver
        assert_eq!(result.1.len(), 2); // processed inputs
        assert_eq!(result.2.len(), 2); // cleaned inputs

        // Both processed and cleaned should be identical when no wasm_export attrs
        assert_eq!(result.1.len(), result.2.len());
        // Check that first parameter is the same
        if let (FnArg::Typed(processed), FnArg::Typed(cleaned)) = (&result.1[0], &result.2[0]) {
            assert_eq!(processed.attrs.len(), cleaned.attrs.len());
            assert_eq!(
                processed.pat.to_token_stream().to_string(),
                cleaned.pat.to_token_stream().to_string()
            );
        }
    }

    #[test]
    fn test_process_function_parameters_with_param_description() {
        // Test parameter processing with param_description
        let stream = TokenStream::from_str(
            r#"#[wasm_export(param_description = "first param")] arg1: String, arg2: u32"#,
        )
        .unwrap();
        let inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();
        let result = WasmExportFunctionBuilder::process_function_parameters(&inputs).unwrap();

        assert_eq!(result.0, SelfReceiver::Static); // no self receiver
        assert_eq!(result.1.len(), 2); // processed inputs
        assert_eq!(result.2.len(), 2); // cleaned inputs

        // Processed should have wasm_bindgen attribute, cleaned should not
        let processed_first = &result.1[0];
        let cleaned_first = &result.2[0];

        if let (FnArg::Typed(processed_pat), FnArg::Typed(cleaned_pat)) =
            (processed_first, cleaned_first)
        {
            // Processed should have wasm_bindgen attribute
            assert!(processed_pat
                .attrs
                .iter()
                .any(|attr| attr.path().is_ident("wasm_bindgen")));
            // Cleaned should not have any attributes
            assert!(cleaned_pat.attrs.is_empty());
        } else {
            panic!("Expected FnArg::Typed");
        }
    }

    #[test]
    fn test_process_function_parameters_with_self() {
        // Test parameter processing with self receiver
        let stream = TokenStream::from_str(r#"&self, arg1: String"#).unwrap();
        let inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();
        let result = WasmExportFunctionBuilder::process_function_parameters(&inputs).unwrap();

        assert_eq!(result.0, SelfReceiver::Instance); // has self receiver
        assert_eq!(result.1.len(), 2); // processed inputs (self + arg1)
        assert_eq!(result.2.len(), 2); // cleaned inputs (self + arg1)
    }

    #[test]
    fn test_process_function_parameters_self_with_wasm_export_error() {
        // Test that wasm_export on self receiver produces error
        let stream = TokenStream::from_str(
            r#"#[wasm_export(param_description = "self desc")] &self, arg1: String"#,
        )
        .unwrap();
        let inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();
        let result = WasmExportFunctionBuilder::process_function_parameters(&inputs);

        assert!(result.is_err());
        let error = result.unwrap_err();
        assert!(error
            .to_string()
            .contains("wasm_export parameter attributes cannot be used on receiver parameters"));
    }

    #[test]
    fn test_process_parameter_wasm_export_attr_valid() {
        // Test valid param_description processing
        let attr: syn::Attribute =
            syn::parse_quote!(#[wasm_export(param_description = "test description")]);
        let result = WasmExportFunctionBuilder::process_parameter_wasm_export_attr(&attr).unwrap();

        assert_eq!(result.len(), 1);
        let meta = &result[0];
        assert!(meta.path().is_ident("param_description"));
    }

    #[test]
    fn test_process_parameter_wasm_export_attr_duplicate_error() {
        // Test duplicate param_description error
        let attr: syn::Attribute = syn::parse_quote!(
            #[wasm_export(param_description = "first", param_description = "second")]
        );
        let result = WasmExportFunctionBuilder::process_parameter_wasm_export_attr(&attr);

        assert!(result.is_err());
        let error = result.unwrap_err();
        assert!(error
            .to_string()
            .contains("duplicate `param_description` attribute"));
    }

    #[test]
    fn test_process_parameter_wasm_export_attr_invalid_value() {
        // Test invalid value type error
        let attr: syn::Attribute = syn::parse_quote!(#[wasm_export(param_description = something)]);
        let result = WasmExportFunctionBuilder::process_parameter_wasm_export_attr(&attr);

        assert!(result.is_err());
        let error = result.unwrap_err();
        assert!(error.to_string().contains("expected string literal"));
    }

    #[test]
    fn test_process_parameter_wasm_export_attr_missing_value() {
        // Test missing value error
        let attr: syn::Attribute = syn::parse_quote!(#[wasm_export(param_description)]);
        let result = WasmExportFunctionBuilder::process_parameter_wasm_export_attr(&attr);

        assert!(result.is_err());
        let error = result.unwrap_err();
        assert!(error
            .to_string()
            .contains("expected a value for this attribute"));
    }

    #[test]
    fn test_clean_parameter_attributes() {
        // Test cleaning wasm_export attributes from parameters
        let stream = TokenStream::from_str(
            r#"#[wasm_export(param_description = "test")] #[other_attr] arg1: String, arg2: u32"#,
        )
        .unwrap();
        let mut inputs = Punctuated::<FnArg, Comma>::parse_terminated
            .parse2(stream)
            .unwrap();

        // Before cleaning - should have both attributes
        if let FnArg::Typed(pat_type) = &inputs[0] {
            assert_eq!(pat_type.attrs.len(), 2);
        }

        WasmExportFunctionBuilder::clean_parameter_attributes(&mut inputs);

        // After cleaning - should only have other_attr
        if let FnArg::Typed(pat_type) = &inputs[0] {
            assert_eq!(pat_type.attrs.len(), 1);
            assert!(pat_type.attrs[0].path().is_ident("other_attr"));
        }
    }

    #[test]
    fn test_extract_doc_comments() {
        // Test extracting doc comments from function attributes
        let func: ItemFn = parse_quote!(
            /// This is a single line doc comment
            /// This is another line
            #[other_attr]
            pub fn test_func() -> Result<(), Error> {
                Ok(())
            }
        );

        let doc_comments = WasmExportFunctionBuilder::extract_doc_comments(&func.attrs);
        assert_eq!(doc_comments.len(), 2);

        // Verify both are doc attributes
        for comment in &doc_comments {
            assert!(comment.path().is_ident("doc"));
        }
    }

    #[test]
    fn test_extract_doc_comments_no_docs() {
        // Test extracting doc comments when there are none
        let func: ItemFn = parse_quote!(
            #[other_attr]
            #[some_macro]
            pub fn test_func() -> Result<(), Error> {
                Ok(())
            }
        );

        let doc_comments = WasmExportFunctionBuilder::extract_doc_comments(&func.attrs);
        assert_eq!(doc_comments.len(), 0);
    }

    #[test]
    fn test_extract_doc_comments_mixed() {
        // Test extracting doc comments mixed with other attributes
        let func: ItemFn = parse_quote!(
            #[cfg(test)]
            /// First doc comment
            #[derive(Debug)]
            /// Second doc comment
            /// Third doc comment
            #[allow(dead_code)]
            pub fn test_func() -> Result<(), Error> {
                Ok(())
            }
        );

        let doc_comments = WasmExportFunctionBuilder::extract_doc_comments(&func.attrs);
        assert_eq!(doc_comments.len(), 3);

        // Verify all are doc attributes
        for comment in &doc_comments {
            assert!(comment.path().is_ident("doc"));
        }
    }

    #[test]
    fn test_build_export_method_with_doc_comments() {
        // Test that doc comments are forwarded to export method
        let method: ImplItemFn = parse_quote!(
            /// This method does something useful
            /// It takes a string and returns a result
            pub fn some_method(arg: String) -> Result<String, Error> {
                Ok(arg)
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(js_name = "someMethod")],
            return_type: parse_quote!(String),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_method(&method, config).unwrap();

        // Check that doc comments are present in export method
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 2);

        // Check that other attributes are also present
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("allow")));
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("wasm_bindgen")));
    }

    #[test]
    fn test_build_export_method_no_doc_comments() {
        // Test that method without doc comments works normally
        let method: ImplItemFn = parse_quote!(
            #[some_attr]
            pub fn some_method(arg: String) -> Result<String, Error> {
                Ok(arg)
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![],
            return_type: parse_quote!(String),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_method(&method, config).unwrap();

        // Check that no doc comments are present
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 0);

        // Check that other attributes are still present
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("allow")));
    }

    #[test]
    fn test_build_export_function_with_doc_comments() {
        // Test that doc comments are forwarded to export function
        let func: ItemFn = parse_quote!(
            /// This function adds two numbers
            /// # Examples
            /// ```
            /// let result = add(1, 2);
            /// ```
            pub fn add(a: u32, b: u32) -> Result<u32, Error> {
                Ok(a + b)
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(js_name = "add")],
            return_type: parse_quote!(u32),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_function(&func, config).unwrap();

        // Check that doc comments are present in export function
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 5); // 5 lines of doc comments (updated from incorrect 4)

        // Check that other attributes are also present
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("allow")));
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("wasm_bindgen")));
    }

    #[test]
    fn test_build_export_function_no_doc_comments() {
        // Test that function without doc comments works normally
        let func: ItemFn = parse_quote!(
            pub fn simple_func() -> Result<(), Error> {
                Ok(())
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![],
            return_type: parse_quote!(()),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_function(&func, config).unwrap();

        // Check that no doc comments are present
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 0);

        // Check that other attributes are still present
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("allow")));
        assert!(result
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("wasm_bindgen")));
    }

    #[test]
    fn test_doc_comments_with_preserve_js_class() {
        // Test that doc comments work with preserve_js_class attribute
        let func: ItemFn = parse_quote!(
            /// Returns a JS class instance
            /// This function demonstrates preserve_js_class behavior
            pub fn get_js_instance() -> Result<JsClass, Error> {
                Ok(JsClass::new())
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![],
            return_type: parse_quote!(JsClass),
            preserve_js_class: Some(Span::call_site()),
        };

        let result = WasmExportFunctionBuilder::build_export_function(&func, config).unwrap();

        // Check that doc comments are present
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 2);

        // Check that return type is JsValue for preserve_js_class
        match &result.sig.output {
            syn::ReturnType::Type(_, ty) => {
                assert_eq!(quote!(#ty).to_string(), "JsValue");
            }
            _ => panic!("Expected return type"),
        }
    }

    #[test]
    fn test_doc_comments_with_mixed_attributes() {
        // Test doc comments combined with other wasm_export attributes
        let func: ItemFn = parse_quote!(
            /// Complex function with multiple attributes
            /// Demonstrates mixed usage of doc comments and wasm_export attributes  
            pub fn complex_func(input: String) -> Result<u32, Error> {
                Ok(42)
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![
                parse_quote!(js_name = "complexFunction"),
                parse_quote!(catch),
                parse_quote!(return_description = "a magic number"),
            ],
            return_type: parse_quote!(u32),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_function(&func, config).unwrap();

        // Check that doc comments are present
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 2);

        // Check that wasm_bindgen attributes are present
        let wasm_bindgen_attrs: Vec<_> = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("wasm_bindgen"))
            .collect();
        assert_eq!(wasm_bindgen_attrs.len(), 1);

        // Check that the wasm_bindgen attribute contains all expected attributes
        let attr_tokens = quote!(#(#wasm_bindgen_attrs)*).to_string();
        assert!(attr_tokens.contains("js_name = \"complexFunction\""));
        assert!(attr_tokens.contains("catch"));
        assert!(attr_tokens.contains("return_description = \"a magic number\""));
    }

    #[test]
    fn test_doc_comments_special_characters() {
        // Test doc comments with special characters and formatting
        let func: ItemFn = parse_quote!(
            /// Function with `code`, **bold**, and *italic* markdown
            ///
            /// # Examples
            /// ```rust
            /// let result = special_func("test");
            /// assert_eq!(result.unwrap(), "processed");
            /// ```
            ///
            /// ## Notes
            /// - Supports Unicode: 🦀 Rust
            /// - Handles quotes: "double" and 'single'
            /// - Special chars: @#$%^&*()
            pub fn special_func(input: &str) -> Result<String, Error> {
                Ok(format!("processed: {}", input))
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![],
            return_type: parse_quote!(String),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_function(&func, config).unwrap();

        // Check that all doc comment lines are preserved
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 12); // Should match the number of doc comment lines (updated count)

        // Verify that special characters are preserved in doc comments
        let doc_attrs: Vec<_> = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .collect();

        // Check that some special content is preserved
        let all_docs = quote!(#(#doc_attrs)*).to_string();
        assert!(all_docs.contains("🦀 Rust"));
        assert!(all_docs.contains("```rust"));
        assert!(all_docs.contains("@#$%^&*()"));
    }

    #[test]
    fn test_build_export_method_doc_comments_comprehensive() {
        // Test comprehensive doc comment scenarios for methods
        let method: ImplItemFn = parse_quote!(
            /// This method performs advanced calculations
            ///
            /// It takes multiple parameters and returns a complex result.
            /// The implementation uses sophisticated algorithms.
            ///
            /// # Parameters
            /// - `self`: The instance reference
            /// - `input`: The input value to process
            ///
            /// # Returns
            /// A Result containing the processed value or an error
            pub fn advanced_method(&self, input: u64) -> Result<ProcessedValue, Error> {
                Ok(ProcessedValue::new(input))
            }
        );
        let config = WasmExportFunctionBuilderConfig {
            forward_attrs: vec![parse_quote!(js_name = "advancedMethod")],
            return_type: parse_quote!(ProcessedValue),
            preserve_js_class: None,
        };

        let result = WasmExportFunctionBuilder::build_export_method(&method, config).unwrap();

        // Check that all doc comments are preserved
        let doc_count = result
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("doc"))
            .count();
        assert_eq!(doc_count, 11); // Count the doc comment lines

        // Check method name transformation
        assert_eq!(result.sig.ident.to_string(), "advanced_method__wasm_export");

        // Check that js_name attribute is forwarded
        let wasm_bindgen_attr = result
            .attrs
            .iter()
            .find(|attr| attr.path().is_ident("wasm_bindgen"))
            .expect("wasm_bindgen attribute should be present");

        let attr_tokens = quote!(#wasm_bindgen_attr).to_string();
        assert!(attr_tokens.contains("js_name = \"advancedMethod\""));
    }
}