vb6parse 1.0.1

vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms.
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
//! # `DateValue` Function
//!
//! Returns a `Variant` (`Date`) containing the date represented by a string expression.
//!
//! ## Syntax
//!
//! ```vb
//! DateValue(date)
//! ```
//!
//! ## Parameters
//!
//! - **date**: Required. `String` expression representing a date from January 1, 100 through
//!   December 31, 9999. Can also be any expression that can represent a date, a time, or
//!   both a date and time, in that range.
//!
//! ## Return Value
//!
//! Returns a `Variant` of subtype `Date`. If the string includes valid time information, it's
//! not returned as part of the date (time is set to midnight). Returns `Null` if the string
//! cannot be converted to a valid date.
//!
//! ## Remarks
//!
//! The `DateValue` function is used to convert string representations of dates into actual
//! `Date` values. It recognizes dates according to the system locale settings.
//!
//! **Important Characteristics:**
//!
//! - Interprets strings according to system locale settings
//! - Recognizes various date formats (MM/DD/YYYY, Month DD, YYYY, etc.)
//! - Strips time information if present (returns date portion only)
//! - Two-digit years: 0-29 → 2000-2029, 30-99 → 1930-1999
//! - Month names can be spelled out or abbreviated
//! - Accepts dates in various formats depending on locale
//! - Returns midnight (00:00:00) for time portion
//! - Case-insensitive for month names
//!
//! ## Recognized Date Formats
//!
//! `DateValue` recognizes many formats (locale-dependent):
//!
//! ```vb
//! ' Numeric formats
//! DateValue("1/15/2025")        ' MM/DD/YYYY (US)
//! DateValue("15/1/2025")        ' DD/MM/YYYY (UK)
//! DateValue("2025-01-15")       ' ISO format
//! DateValue("1-15-2025")        ' With dashes
//!
//! ' Text formats
//! DateValue("January 15, 2025") ' Full month name
//! DateValue("Jan 15, 2025")     ' Abbreviated month
//! DateValue("15 January 2025")  ' Different order
//! DateValue("15-Jan-2025")      ' Mixed format
//!
//! ' Short formats
//! DateValue("1/15/25")          ' Two-digit year
//! DateValue("Jan 15")           ' Assumes current year
//! ```
//!
//! ## Examples
//!
//! ### Basic Usage
//!
//! ```vb
//! ' Convert string to date
//! Dim birthday As Date
//! birthday = DateValue("5/15/1990")
//! MsgBox birthday
//!
//! ' With month name
//! Dim holiday As Date
//! holiday = DateValue("December 25, 2025")
//!
//! ' ISO format
//! Dim isoDate As Date
//! isoDate = DateValue("2025-01-15")
//! ```
//!
//! ### Parse User Input
//!
//! ```vb
//! Function ParseDate(userInput As String) As Variant
//!     On Error Resume Next
//!     ParseDate = DateValue(userInput)
//!     
//!     If Err.Number <> 0 Then
//!         ParseDate = Null
//!     End If
//! End Function
//!
//! ' Usage
//! Dim inputDate As Variant
//! inputDate = ParseDate(txtDate.Text)
//! If IsNull(inputDate) Then
//!     MsgBox "Invalid date format"
//! End If
//! ```
//!
//! ### Strip Time from `DateTime`
//!
//! ```vb
//! Function GetDateOnly(dateTime As Variant) As Date
//!     ' Convert to string and back to strip time
//!     GetDateOnly = DateValue(CStr(dateTime))
//! End Function
//!
//! ' Alternative using Int
//! Function GetDateOnly2(dateTime As Date) As Date
//!     GetDateOnly2 = Int(dateTime)
//! End Function
//! ```
//!
//! ## Common Patterns
//!
//! ### Validate Date String
//!
//! ```vb
//! Function IsValidDateString(dateStr As String) As Boolean
//!     On Error Resume Next
//!     Dim testDate As Date
//!     testDate = DateValue(dateStr)
//!     IsValidDateString = (Err.Number = 0)
//! End Function
//!
//! ' Usage
//! If IsValidDateString(txtDate.Text) Then
//!     MsgBox "Valid date"
//! Else
//!     MsgBox "Invalid date"
//! End If
//! ```
//!
//! ### Parse Various Formats
//!
//! ```vb
//! Function TryParseDateFormats(dateStr As String) As Variant
//!     Dim formats As Variant
//!     Dim i As Integer
//!     
//!     formats = Array("MM/DD/YYYY", "DD/MM/YYYY", "YYYY-MM-DD", _
//!                    "Month DD, YYYY", "DD Month YYYY")
//!     
//!     On Error Resume Next
//!     TryParseDateFormats = DateValue(dateStr)
//!     
//!     If Err.Number = 0 Then Exit Function
//!     
//!     ' Try with current year if not specified
//!     TryParseDateFormats = DateValue(dateStr & " " & Year(Date))
//! End Function
//! ```
//!
//! ### Import Data with Date Parsing
//!
//! ```vb
//! Sub ImportDataWithDates(filePath As String)
//!     Dim line As String
//!     Dim fields() As String
//!     Dim recordDate As Date
//!     
//!     Open filePath For Input As #1
//!     
//!     Do Until EOF(1)
//!         Line Input #1, line
//!         fields = Split(line, ",")
//!         
//!         On Error Resume Next
//!         recordDate = DateValue(fields(0))
//!         
//!         If Err.Number = 0 Then
//!             ' Process valid date record
//!             ProcessRecord recordDate, fields
//!         Else
//!             ' Log invalid date
//!             LogError "Invalid date: " & fields(0)
//!         End If
//!         
//!         On Error GoTo 0
//!     Loop
//!     
//!     Close #1
//! End Sub
//! ```
//!
//! ### Date Range Validator
//!
//! ```vb
//! Function ValidateDateRange(startStr As String, endStr As String) As Boolean
//!     Dim startDate As Date
//!     Dim endDate As Date
//!     
//!     On Error Resume Next
//!     startDate = DateValue(startStr)
//!     If Err.Number <> 0 Then Exit Function
//!     
//!     endDate = DateValue(endStr)
//!     If Err.Number <> 0 Then Exit Function
//!     
//!     ValidateDateRange = (startDate <= endDate)
//! End Function
//! ```
//!
//! ### Convert Text File Dates
//!
//! ```vb
//! Function ConvertTextDate(textDate As String) As Date
//!     ' Convert various text formats to standard date
//!     ConvertTextDate = DateValue(textDate)
//! End Function
//!
//! Sub ProcessLogFile()
//!     Dim logDate As Date
//!     Dim dateStr As String
//!     
//!     dateStr = "Jan 15, 2025"
//!     logDate = ConvertTextDate(dateStr)
//!     
//!     MsgBox Format(logDate, "yyyy-mm-dd")
//! End Sub
//! ```
//!
//! ### Flexible Date Parser
//!
//! ```vb
//! Function SmartDateParse(input As String) As Variant
//!     Dim result As Variant
//!     
//!     On Error Resume Next
//!     
//!     ' Try as-is
//!     result = DateValue(input)
//!     If Err.Number = 0 Then
//!         SmartDateParse = result
//!         Exit Function
//!     End If
//!     Err.Clear
//!     
//!     ' Try adding current year
//!     result = DateValue(input & ", " & Year(Date))
//!     If Err.Number = 0 Then
//!         SmartDateParse = result
//!         Exit Function
//!     End If
//!     
//!     ' Return Null if unparseable
//!     SmartDateParse = Null
//! End Function
//! ```
//!
//! ### Database Date Import
//!
//! ```vb
//! Sub ImportDatabaseDates(rs As ADODB.Recordset)
//!     Dim dateField As String
//!     Dim parsedDate As Date
//!     
//!     Do Until rs.EOF
//!         dateField = rs("DateField").Value
//!         
//!         On Error Resume Next
//!         parsedDate = DateValue(dateField)
//!         
//!         If Err.Number = 0 Then
//!             ' Update with parsed date
//!             rs("DateField") = parsedDate
//!             rs.Update
//!         End If
//!         
//!         rs.MoveNext
//!     Loop
//! End Sub
//! ```
//!
//! ### Form Date Validation
//!
//! ```vb
//! Function ValidateFormDate(ByRef txt As TextBox, fieldName As String) As Boolean
//!     Dim testDate As Date
//!     
//!     On Error Resume Next
//!     testDate = DateValue(txt.Text)
//!     
//!     If Err.Number <> 0 Then
//!         MsgBox "Invalid " & fieldName & " format", vbExclamation
//!         txt.SetFocus
//!         ValidateFormDate = False
//!     Else
//!         ValidateFormDate = True
//!     End If
//! End Function
//! ```
//!
//! ## Advanced Usage
//!
//! ### Multi-Locale Date Parser
//!
//! ```vb
//! Function ParseInternationalDate(dateStr As String, locale As String) As Variant
//!     ' This is simplified - VB6 doesn't have full locale switching
//!     ' Would need Windows API for true locale switching
//!     
//!     On Error Resume Next
//!     
//!     Select Case UCase(locale)
//!         Case "US"
//!             ' Try MM/DD/YYYY first
//!             ParseInternationalDate = DateValue(dateStr)
//!         
//!         Case "UK", "EU"
//!             ' Parse with assumption of DD/MM/YYYY
//!             ' Would need custom parsing logic
//!             ParseInternationalDate = DateValue(dateStr)
//!         
//!         Case "ISO"
//!             ' YYYY-MM-DD format
//!             ParseInternationalDate = DateValue(dateStr)
//!         
//!         Case Else
//!             ParseInternationalDate = DateValue(dateStr)
//!     End Select
//!     
//!     If Err.Number <> 0 Then
//!         ParseInternationalDate = Null
//!     End If
//! End Function
//! ```
//!
//! ### Batch Date Conversion
//!
//! ```vb
//! Function ConvertDateArray(dateStrings() As String) As Variant
//!     Dim dates() As Date
//!     Dim i As Long
//!     Dim validCount As Long
//!     
//!     ReDim dates(LBound(dateStrings) To UBound(dateStrings))
//!     validCount = 0
//!     
//!     For i = LBound(dateStrings) To UBound(dateStrings)
//!         On Error Resume Next
//!         dates(i) = DateValue(dateStrings(i))
//!         
//!         If Err.Number = 0 Then
//!             validCount = validCount + 1
//!         End If
//!         Err.Clear
//!     Next i
//!     
//!     ConvertDateArray = dates
//! End Function
//! ```
//!
//! ### Date String Normalizer
//!
//! ```vb
//! Function NormalizeDateString(input As String, outputFormat As String) As String
//!     Dim parsedDate As Date
//!     
//!     On Error Resume Next
//!     parsedDate = DateValue(input)
//!     
//!     If Err.Number = 0 Then
//!         NormalizeDateString = Format(parsedDate, outputFormat)
//!     Else
//!         NormalizeDateString = ""
//!     End If
//! End Function
//!
//! ' Usage: Convert various formats to ISO
//! Dim normalized As String
//! normalized = NormalizeDateString("Jan 15, 2025", "yyyy-mm-dd")  ' Returns "2025-01-15"
//! ```
//!
//! ### Excel Date Converter
//!
//! ```vb
//! Function ExcelDateToVBDate(excelDateStr As String) As Variant
//!     ' Excel stores dates as numbers, but when exported may be text
//!     Dim dateVal As Variant
//!     
//!     On Error Resume Next
//!     
//!     ' Try as text date
//!     dateVal = DateValue(excelDateStr)
//!     
//!     If Err.Number <> 0 Then
//!         Err.Clear
//!         ' Try as Excel serial number
//!         If IsNumeric(excelDateStr) Then
//!             dateVal = CDate(CDbl(excelDateStr))
//!         Else
//!             dateVal = Null
//!         End If
//!     End If
//!     
//!     ExcelDateToVBDate = dateVal
//! End Function
//! ```
//!
//! ### Calendar Date Picker Helper
//!
//! ```vb
//! Function ParseCalendarInput(input As String) As Variant
//!     ' Handle various calendar input formats
//!     Dim result As Date
//!     
//!     On Error Resume Next
//!     
//!     ' Remove extra whitespace
//!     input = Trim(input)
//!     
//!     ' Try direct conversion
//!     result = DateValue(input)
//!     If Err.Number = 0 Then
//!         ParseCalendarInput = result
//!         Exit Function
//!     End If
//!     
//!     ' Try common substitutions
//!     If LCase(input) = "today" Then
//!         ParseCalendarInput = Date
//!     ElseIf LCase(input) = "yesterday" Then
//!         ParseCalendarInput = Date - 1
//!     ElseIf LCase(input) = "tomorrow" Then
//!         ParseCalendarInput = Date + 1
//!     Else
//!         ParseCalendarInput = Null
//!     End If
//! End Function
//! ```
//!
//! ### Report Date Filter
//!
//! ```vb
//! Function BuildDateFilter(fromStr As String, toStr As String) As String
//!     Dim fromDate As Date
//!     Dim toDate As Date
//!     
//!     On Error Resume Next
//!     fromDate = DateValue(fromStr)
//!     toDate = DateValue(toStr)
//!     
//!     If Err.Number = 0 Then
//!         BuildDateFilter = "DateField >= #" & fromDate & "# AND DateField <= #" & toDate & "#"
//!     Else
//!         BuildDateFilter = ""
//!     End If
//! End Function
//! ```
//!
//! ## Error Handling
//!
//! ```vb
//! Function SafeDateValue(dateStr As String) As Variant
//!     On Error GoTo ErrorHandler
//!     
//!     ' Validate input
//!     If Len(Trim(dateStr)) = 0 Then
//!         SafeDateValue = Null
//!         Exit Function
//!     End If
//!     
//!     SafeDateValue = DateValue(dateStr)
//!     Exit Function
//!     
//! ErrorHandler:
//!     SafeDateValue = Null
//! End Function
//!
//! Function SafeDateValueWithDefault(dateStr As String, defaultDate As Date) As Date
//!     On Error Resume Next
//!     SafeDateValueWithDefault = DateValue(dateStr)
//!     
//!     If Err.Number <> 0 Then
//!         SafeDateValueWithDefault = defaultDate
//!     End If
//! End Function
//! ```
//!
//! ### Common Errors
//!
//! - **Error 13** (Type mismatch): `String` cannot be recognized as a date
//! - **Error 5** (Invalid procedure call): `Date` is outside valid range
//!
//! ## Performance Considerations
//!
//! - `DateValue` involves string parsing, slower than `DateSerial`
//! - Use `DateSerial` when constructing dates from numeric components
//! - Cache parsed dates when processing large datasets
//! - Locale detection adds overhead
//! - For known formats, custom parsing may be faster
//!
//! ## Best Practices
//!
//! ### Always Validate User Input
//!
//! ```vb
//! ' Good - Validate before use
//! On Error Resume Next
//! userDate = DateValue(txtInput.Text)
//! If Err.Number <> 0 Then
//!     MsgBox "Please enter a valid date"
//!     Exit Sub
//! End If
//!
//! ' Avoid - Assuming input is valid
//! userDate = DateValue(txtInput.Text)  ' May crash
//! ```
//!
//! ### Use `IsDate` for Pre-validation
//!
//! ```vb
//! If IsDate(txtInput.Text) Then
//!     processDate = DateValue(txtInput.Text)
//! Else
//!     MsgBox "Invalid date"
//! End If
//! ```
//!
//! ### Prefer `DateSerial` for Programmatic Dates
//!
//! ```vb
//! ' Good - Fast and unambiguous
//! dt = DateSerial(2025, 12, 25)
//!
//! ' Less ideal - String parsing overhead
//! dt = DateValue("12/25/2025")
//! ```
//!
//! ### Be Aware of Locale Issues
//!
//! ```vb
//! ' US locale: MM/DD/YYYY
//! dt = DateValue("3/5/2025")    ' March 5 in US
//!
//! ' UK locale: DD/MM/YYYY
//! dt = DateValue("3/5/2025")    ' May 3 in UK
//!
//! ' Use unambiguous formats when possible
//! dt = DateValue("2025-03-05")  ' ISO format, clearer
//! dt = DateValue("March 5, 2025")  ' Text format, clearer
//! ```
//!
//! ## Comparison with Other Functions
//!
//! ### `DateValue` vs `DateSerial`
//!
//! ```vb
//! ' DateValue - From string representation
//! dt = DateValue("12/25/2025")
//!
//! ' DateSerial - From numeric components (faster, more reliable)
//! dt = DateSerial(2025, 12, 25)
//! ```
//!
//! ### `DateValue` vs `CDate`
//!
//! ```vb
//! ' DateValue - Returns date portion only (strips time)
//! dt = DateValue("12/25/2025 3:30 PM")  ' Returns 12/25/2025 00:00:00
//!
//! ' CDate - Preserves time information
//! dt = CDate("12/25/2025 3:30 PM")      ' Returns 12/25/2025 15:30:00
//! ```
//!
//! ### `DateValue` vs `IsDate`
//!
//! ```vb
//! ' IsDate - Tests if string can be converted (returns Boolean)
//! If IsDate("12/25/2025") Then...
//!
//! ' DateValue - Actually converts (returns Date or error)
//! dt = DateValue("12/25/2025")
//! ```
//!
//! ## Limitations
//!
//! - Locale-dependent interpretation can cause unexpected results
//! - Cannot directly parse custom date formats
//! - Limited control over parsing rules
//! - Strips time information (use `CDate` to preserve time)
//! - Two-digit year interpretation fixed (0-29=2000-2029, 30-99=1930-1999)
//! - Error handling required for user input
//!
//! ## Related Functions
//!
//! - `CDate`: Converts expression to `Date` (preserves time)
//! - `DateSerial`: Creates date from year, month, day (numeric)
//! - `IsDate`: Tests if expression can be converted to date
//! - `Format`: Formats date as `String` (opposite direction)
//! - `TimeValue`: Returns time portion from `String`
//! - `Year`, `Month`, `Day`: Extract date components
//! - `Date`: Returns current system date
//! - `CVDate`: Converts expression to `Date` (legacy function)

#[cfg(test)]
mod tests {
    use crate::*;

    #[test]
    fn datevalue_basic() {
        let source = r#"
result = DateValue("1/15/2025")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_variable() {
        let source = r"
birthday = DateValue(userInput)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_month_name() {
        let source = r#"
holiday = DateValue("December 25, 2025")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_iso_format() {
        let source = r#"
dt = DateValue("2025-01-15")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_in_function() {
        let source = r"
Function ParseDate(input As String) As Date
    ParseDate = DateValue(input)
End Function
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_isdate() {
        let source = r"
If IsDate(txtDate.Text) Then
    result = DateValue(txtDate.Text)
End If
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_in_comparison() {
        let source = r#"
If DateValue(startDate) > Date Then
    MsgBox "Future date"
End If
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_format() {
        let source = r#"
formatted = Format(DateValue(dateStr), "yyyy-mm-dd")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_error_handling() {
        let source = r#"
On Error Resume Next
result = DateValue(userInput)
If Err.Number <> 0 Then
    MsgBox "Invalid date"
End If
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_in_loop() {
        let source = r"
For i = 1 To count
    dates(i) = DateValue(dateStrings(i))
Next i
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_trim() {
        let source = r"
cleanDate = DateValue(Trim(input))
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_in_select_case() {
        let source = r#"
Select Case DateValue(inputDate)
    Case Date
        MsgBox "Today"
    Case Else
        MsgBox "Other day"
End Select
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_cstr() {
        let source = r"
dateOnly = DateValue(CStr(dateTime))
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_range_validation() {
        let source = r#"
startDate = DateValue(txtStart.Text)
endDate = DateValue(txtEnd.Text)
If startDate > endDate Then
    MsgBox "Invalid range"
End If
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_year() {
        let source = r"
y = Year(DateValue(dateStr))
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_in_array_assignment() {
        let source = r#"
dates(0) = DateValue("1/1/2025")
dates(1) = DateValue("12/31/2025")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_database_field() {
        let source = r#"
rs("DateField") = DateValue(importedDate)
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_concatenation() {
        let source = r#"
msg = "Date: " & DateValue(input)
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_datediff() {
        let source = r#"
days = DateDiff("d", DateValue(start), DateValue(finish))
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_multiple_calls() {
        let source = r"
d1 = DateValue(str1)
d2 = DateValue(str2)
diff = d2 - d1
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_in_msgbox() {
        let source = r#"
MsgBox "Parsed: " & DateValue(userInput)
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_textbox_validation() {
        let source = r"
testDate = DateValue(txtDate.Text)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_with_isnull() {
        let source = r"
result = DateValue(input)
If Not IsNull(result) Then
    Process result
End If
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_filter_building() {
        let source = r##"
filter = "Date >= #" & DateValue(startStr) & "#"
"##;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn datevalue_abbreviated_month() {
        let source = r#"
dt = DateValue("Jan 15, 2025")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings.set_snapshot_path(
            "../../../../../snapshots/syntax/library/functions/datetime/datevalue",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }
}