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
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
//! ## `Split` Function
//!
//! Returns a zero-based, one-dimensional array containing a specified number of substrings.
//!
//! ## Syntax
//!
//! ```text
//! Split(expression[, delimiter[, limit[, compare]]])
//! ```
//!
//! ## Parameters
//!
//! - **expression** (Required): `String` expression containing substrings and delimiters
//! - **delimiter** (Optional): `String` character used to identify substring limits
//!   - If omitted, the space character (" ") is assumed
//! - **limit** (Optional): Number of substrings to be returned; `-1` returns all substrings
//! - **compare** (Optional): Numeric value indicating comparison type (see Compare Settings)
//!
//! ## Compare Settings
//!
//! - `vbBinaryCompare` (0): Perform a binary comparison
//! - `vbTextCompare` (1): Perform a textual comparison
//! - `vbDatabaseCompare` (2): Perform a comparison based on information in your database
//!
//! ## Return Value
//!
//! - Returns a `Variant` containing a one-dimensional array of strings (zero-based)
//! - If `expression` is a zero-length string (""), returns an empty array
//! - If `delimiter` is a zero-length string or not found, returns a single-element array containing the entire expression
//!
//! ## Remarks
//!
//! The `Split` function breaks a string into substrings at the specified delimiter and returns them as an array. This is the opposite of the `Join` function, which combines array elements into a single string.
//!
//! - Returns a zero-based array (first element is index 0)
//! - If expression is a zero-length string (""), Split returns an empty array
//! - If delimiter is a zero-length string, a single-element array containing the entire expression is returned
//! - If delimiter is not found, a single-element array containing the entire expression is returned
//! - Delimiter characters are not included in the returned substrings
//! - If `limit` is provided and is less than the number of substrings, the last element contains the remainder of the string (including delimiters)
//! - Multiple consecutive delimiters create empty string elements in the array
//!
//! ## Typical Uses
//!
//! - **Parse CSV Data**: Split comma-separated values
//! - **Extract Words**: Split sentence into individual words
//! - **Process Lines**: Split multiline text into lines
//! - **Parse Paths**: Split file paths into components
//! - **Extract Parameters**: Parse parameter strings
//! - **Data Import**: Process delimited import files
//! - **String Tokenization**: Break strings into tokens
//! * **Configuration Parsing**: Parse config file entries
//!
//! ## Common Errors
//!
//! The Split function itself doesn't typically generate errors with valid inputs, but related operations can:
//!
//! - **Error 13** (Type mismatch): If expression is not a string
//! - **Error 5** (Invalid procedure call): If limit is negative (other than -1)
//! - **Error 9** (Subscript out of range): When accessing array elements beyond bounds
//!
//! ### Always validate inputs and array bounds:
//!
//! ```vb6
//! On Error Resume Next
//! Dim parts() As String
//! parts = Split(text, ",")
//! If Err.Number <> 0 Then
//!     MsgBox "Error splitting text: " & Err.Description
//! End If
//! ```
//!
//! ## Performance Considerations
//!
//! - Split is very efficient for moderate-sized strings
//! - For very large strings (>1MB), consider processing in chunks
//! - Avoid repeated Split calls in tight loops if possible
//! - Consider caching Split results if reused multiple times
//! - For complex parsing, Split may be slower than manual parsing
//!
//! ## Best Practices
//!
//! - **Check Array Bounds**: Always verify `UBound` before accessing elements
//! - **Handle Empty Results**: Check if array has elements before processing
//! - **Trim Whitespace**: Use Trim on results to remove unwanted spaces
//! - **Validate Delimiter**: Ensure delimiter is appropriate for data
//! - **Use Limit**: Limit number of splits when only need first few elements
//! - **Handle Edge Cases**: Test with empty strings, missing delimiters
//! - **Consider Alternatives**: For complex parsing, use dedicated parser
//! - **Document Expected Format**: Comment the expected delimited format
//! - **Filter Empty Elements**: Remove empty strings when caused by multiple delimiters
//! - **Combine with Join**: Use Join to reconstruct modified arrays
//!
//! ## Comparison with Related Functions
//!
//! | Function | Purpose | Input | Output |
//! |----------|---------|-------|--------|
//! | Split | String to array | String | Array of strings |
//! | Join | Array to string | Array | String |
//! | Filter | Filter array | Array | Filtered array |
//! | Replace | Replace text | String | String |
//!
//! ## Platform Considerations
//!
//! - Available in VB6, VBA (Office 2000+)
//! - Not available in VBA prior to Office 2000
//! - Returns Variant array (can assign to String array)
//! - Zero-based array (unlike many VB arrays which are 1-based)
//! - Consistent behavior across platforms
//!
//! ## Limitations
//!
//! - Returns zero-based array (may be unexpected in VB6)
//! - Delimiter must be exact match (no regex)
//! - Single delimiter only (can't split on multiple different delimiters)
//! - No built-in trim of results
//! - Empty elements included when multiple consecutive delimiters present
//! - No built-in handling of quoted fields (CSV with commas in quotes)
//! - Maximum array size limited by memory
//!
//! ## Related Functions
//!
//! - `Join`: Combines array elements into a string with delimiter
//! - `Filter`: Returns a subset of array based on filter criteria
//! - `InStr`: Finds position of substring (useful before Split)
//! - `Replace`: Replaces occurrences of substring
//!
//!
//! ## Basic Examples
//!
//! ### Example 1: Split Comma-Separated Values
//!
//! ```vb6
//! Dim text As String
//! Dim parts() As String
//! text = "apple,banana,orange"
//! parts = Split(text, ",")
//! ' parts(0) = "apple"
//! ' parts(1) = "banana"
//! ' parts(2) = "orange"
//! ```
//!
//! ### Example 2: Split Sentence Into Words (Default Space Delimiter)
//!
//! ```vb6
//! Dim sentence As String
//! Dim words() As String
//! sentence = "The quick brown fox"
//! words = Split(sentence)
//! ' words(0) = "The"
//! ' words(1) = "quick"
//! ' words(2) = "brown"
//! ' words(3) = "fox"
//! ```
//!
//! ### Example 3: Split With Limit
//!
//! ```vb6
//! Dim data As String
//! Dim items() As String
//! data = "one,two,three,four,five"
//! items = Split(data, ",", 3)
//! ' items(0) = "one"
//! ' items(1) = "two"
//! ' items(2) = "three,four,five" (remainder)
//! ```
//!
//! ### Example 4: Split Multiline Text
//!
//! ```vb6
//! Dim text As String
//! Dim lines() As String
//! text = "Line 1" & vbCrLf & "Line 2" & vbCrLf & "Line 3"
//! lines = Split(text, vbCrLf)
//! ' lines(0) = "Line 1"
//! ' lines(1) = "Line 2"
//! ' lines(2) = "Line 3"
//! ```
//!
//! ## Common Patterns
//!
//! ### Pattern 1: Parse a CSV line handling quotes
//!
//! ```vb6
//! Function ParseCSVLine(line As String) As String()
//!     ' Simple CSV parsing (doesn't handle quotes)
//!     ParseCSVLine = Split(line, ",")
//! End Function
//! ```
//!
//! ### Pattern 2: Extract Words From Text, Handling Multiple Spaces
//!
//! ```vb6
//! Function GetWords(text As String) As String()
//!     Dim words() As String
//!     Dim result() As String
//!     Dim i As Integer
//!     Dim count As Integer
//!     
//!     words = Split(Trim(text), " ")
//!     
//!     ' Filter out empty strings from multiple spaces
//!     count = 0
//!     For i = LBound(words) To UBound(words)
//!         If Len(words(i)) > 0 Then
//!             count = count + 1
//!         End If
//!     Next i
//!     
//!     ReDim result(0 To count - 1)
//!     count = 0
//!     For i = LBound(words) To UBound(words)
//!         If Len(words(i)) > 0 Then
//!             result(count) = words(i)
//!             count = count + 1
//!         End If
//!     Next i
//!     
//!     GetWords = result
//! End Function
//! ```
//!
//! ### Pattern 3: Split File Path Into Components
//!
//! ```vb6
//! Function SplitPath(filePath As String) As String()
//!     Dim delimiter As String
//!     
//!     ' Handle both Windows and Unix paths
//!     If InStr(filePath, "\") > 0 Then
//!         delimiter = "\"
//!     Else
//!         delimiter = "/"
//!     End If
//!     
//!     SplitPath = Split(filePath, delimiter)
//! End Function
//! ```
//!
//! ### Pattern 4: Parse Key=Value Pairs
//!
//! ```vb6
//! Sub ParseKeyValue(kvPair As String, key As String, value As String)
//!     Dim parts() As String
//!     parts = Split(kvPair, "=", 2)
//!     
//!     If UBound(parts) >= 0 Then
//!         key = Trim(parts(0))
//!         If UBound(parts) >= 1 Then
//!             value = Trim(parts(1))
//!         Else
//!             value = ""
//!         End If
//!     End If
//! End Sub
//! ```
//!
//! ### Pattern 5: Split Text Into Lines, Handling Different Line Endings
//!
//! ```vb6
//! Function SplitLines(text As String) As String()
//!     Dim normalized As String
//!     
//!     ' Normalize line endings to vbCrLf
//!     normalized = Replace(text, vbCr & vbLf, vbLf)
//!     normalized = Replace(normalized, vbCr, vbLf)
//!     
//!     SplitLines = Split(normalized, vbLf)
//! End Function
//! ```
//!
//! ### Pattern 6: Parse Delimited Data With Custom Delimiter
//!
//! ```vb6
//! Function ParseDelimitedData(data As String, delimiter As String) As Variant
//!     Dim lines() As String
//!     Dim result() As Variant
//!     Dim i As Integer
//!     
//!     lines = Split(data, vbCrLf)
//!     ReDim result(0 To UBound(lines))
//!     
//!     For i = LBound(lines) To UBound(lines)
//!         result(i) = Split(lines(i), delimiter)
//!     Next i
//!     
//!     ParseDelimitedData = result
//! End Function
//! ```
//!
//! ### Pattern 7: Extract Specific Fields From Delimited String
//!
//! ```vb6
//! Function ExtractField(delimitedString As String, _
//!                       delimiter As String, _
//!                       fieldIndex As Integer) As String
//!     Dim fields() As String
//!     fields = Split(delimitedString, delimiter)
//!     
//!     If fieldIndex >= LBound(fields) And fieldIndex <= UBound(fields) Then
//!         ExtractField = fields(fieldIndex)
//!     Else
//!         ExtractField = ""
//!     End If
//! End Function
//! ```
//!
//! ### Pattern 8: Count Number Of Tokens In String
//!
//! ```vb6
//! Function CountTokens(text As String, delimiter As String) As Integer
//!     Dim tokens() As String
//!     tokens = Split(text, delimiter)
//!     CountTokens = UBound(tokens) - LBound(tokens) + 1
//! End Function
//! ```
//!
//! ### Pattern 9: Split And Reverse The Order
//!
//! ```vb6
//! Function ReverseSplit(text As String, delimiter As String) As String()
//!     Dim parts() As String
//!     Dim result() As String
//!     Dim i As Integer
//!     Dim count As Integer
//!     
//!     parts = Split(text, delimiter)
//!     count = UBound(parts) - LBound(parts)
//!     ReDim result(0 To count)
//!     
//!     For i = 0 To count
//!         result(i) = parts(count - i)
//!     Next i
//!     
//!     ReverseSplit = result
//! End Function
//! ```
//!
//! ### Pattern 10: Split And Remove Empty Elements
//!
//! ```vb6
//! Function SplitNonEmpty(text As String, delimiter As String) As String()
//!     Dim parts() As String
//!     Dim result() As String
//!     Dim i As Integer
//!     Dim count As Integer
//!     
//!     parts = Split(text, delimiter)
//!     
//!     ' Count non-empty elements
//!     count = 0
//!     For i = LBound(parts) To UBound(parts)
//!         If Len(parts(i)) > 0 Then count = count + 1
//!     Next i
//!     
//!     If count = 0 Then
//!         ReDim result(0 To -1)  ' Empty array
//!     Else
//!         ReDim result(0 To count - 1)
//!         count = 0
//!         For i = LBound(parts) To UBound(parts)
//!             If Len(parts(i)) > 0 Then
//!                 result(count) = parts(i)
//!                 count = count + 1
//!             End If
//!         Next i
//!     End If
//!     
//!     SplitNonEmpty = result
//! End Function
//! ```
//!
//! ## Advanced Usage
//!
//! ### Example 1: Parse CSV Data With Split
//!
//! ```vb6
//! ' Class: CSVParser
//! Private m_data() As Variant
//! Private m_rowCount As Integer
//! Private m_columnCount As Integer
//!
//! Public Sub LoadCSV(csvText As String, Optional hasHeader As Boolean = True)
//!     Dim lines() As String
//!     Dim i As Integer
//!     Dim startRow As Integer
//!     
//!     ' Split into lines
//!     lines = Split(csvText, vbCrLf)
//!     
//!     If hasHeader Then
//!         startRow = 1
//!         m_rowCount = UBound(lines) - LBound(lines)
//!     Else
//!         startRow = 0
//!         m_rowCount = UBound(lines) - LBound(lines) + 1
//!     End If
//!     
//!     ' Get column count from first data row
//!     If UBound(lines) >= startRow Then
//!         Dim firstRow() As String
//!         firstRow = Split(lines(startRow), ",")
//!         m_columnCount = UBound(firstRow) - LBound(firstRow) + 1
//!     End If
//!     
//!     ' Parse data
//!     ReDim m_data(1 To m_rowCount, 1 To m_columnCount)
//!     
//!     For i = startRow To UBound(lines)
//!         Dim fields() As String
//!         Dim j As Integer
//!         fields = Split(lines(i), ",")
//!         
//!         For j = LBound(fields) To UBound(fields)
//!             If j - LBound(fields) + 1 <= m_columnCount Then
//!                 m_data(i - startRow + 1, j - LBound(fields) + 1) = fields(j)
//!             End If
//!         Next j
//!     Next i
//! End Sub
//!
//! Public Function GetValue(row As Integer, col As Integer) As String
//!     If row >= 1 And row <= m_rowCount And _
//!        col >= 1 And col <= m_columnCount Then
//!         GetValue = m_data(row, col)
//!     Else
//!         GetValue = ""
//!     End If
//! End Function
//!
//! Public Property Get RowCount() As Integer
//!     RowCount = m_rowCount
//! End Property
//!
//! Public Property Get ColumnCount() As Integer
//!     ColumnCount = m_columnCount
//! End Property
//!
//! Public Function GetRow(row As Integer) As Variant
//!     Dim result() As String
//!     Dim i As Integer
//!     
//!     If row >= 1 And row <= m_rowCount Then
//!         ReDim result(1 To m_columnCount)
//!         For i = 1 To m_columnCount
//!             result(i) = m_data(row, i)
//!         Next i
//!         GetRow = result
//!     End If
//! End Function
//! ```
//!
//! ### Example 2: Parse Configuration Files
//!
//! ```vb6
//! ' Module: ConfigFileParser
//! Private m_settings As Object  ' Scripting.Dictionary
//!
//! Public Sub LoadConfig(configText As String)
//!     Dim lines() As String
//!     Dim i As Integer
//!     
//!     Set m_settings = CreateObject("Scripting.Dictionary")
//!     m_settings.CompareMode = vbTextCompare
//!     
//!     lines = Split(configText, vbCrLf)
//!     
//!     For i = LBound(lines) To UBound(lines)
//!         Dim line As String
//!         line = Trim(lines(i))
//!         
//!         ' Skip empty lines and comments
//!         If Len(line) > 0 And Left(line, 1) <> "#" And Left(line, 1) <> ";" Then
//!             Dim parts() As String
//!             parts = Split(line, "=", 2)
//!             
//!             If UBound(parts) >= 1 Then
//!                 Dim key As String
//!                 Dim value As String
//!                 key = Trim(parts(0))
//!                 value = Trim(parts(1))
//!                 
//!                 m_settings(key) = value
//!             End If
//!         End If
//!     Next i
//! End Sub
//!
//! Public Function GetSetting(key As String, Optional defaultValue As String = "") As String
//!     If m_settings.Exists(key) Then
//!         GetSetting = m_settings(key)
//!     Else
//!         GetSetting = defaultValue
//!     End If
//! End Function
//!
//! Public Function GetSettingAsInteger(key As String, Optional defaultValue As Integer = 0) As Integer
//!     If m_settings.Exists(key) Then
//!         If IsNumeric(m_settings(key)) Then
//!             GetSettingAsInteger = CInt(m_settings(key))
//!         Else
//!             GetSettingAsInteger = defaultValue
//!         End If
//!     Else
//!         GetSettingAsInteger = defaultValue
//!     End If
//! End Function
//!
//! Public Function GetSettingList(key As String, delimiter As String) As String()
//!     If m_settings.Exists(key) Then
//!         GetSettingList = Split(m_settings(key), delimiter)
//!     Else
//!         Dim empty() As String
//!         ReDim empty(0 To -1)
//!         GetSettingList = empty
//!     End If
//! End Function
//! ```
//!
//! ### Example 3: Process Text With Various Split Operations
//!
//! ```vb6
//! ' Class: TextProcessor
//!
//! Public Function GetParagraphs(text As String) As String()
//!     ' Split by double line breaks
//!     Dim normalized As String
//!     normalized = Replace(text, vbCrLf & vbCrLf, vbLf & vbLf)
//!     normalized = Replace(normalized, vbCr, vbLf)
//!     GetParagraphs = Split(normalized, vbLf & vbLf)
//! End Function
//!
//! Public Function GetSentences(text As String) As String()
//!     Dim temp As String
//!     Dim i As Integer
//!     
//!     ' Simple sentence splitting (doesn't handle abbreviations)
//!     temp = Replace(text, ". ", ".|")
//!     temp = Replace(temp, "! ", "!|")
//!     temp = Replace(temp, "? ", "?|")
//!     
//!     GetSentences = Split(temp, "|")
//! End Function
//!
//! Public Function GetWords(text As String) As String()
//!     Dim cleaned As String
//!     Dim i As Integer
//!     
//!     cleaned = text
//!     ' Remove punctuation
//!     cleaned = Replace(cleaned, ".", " ")
//!     cleaned = Replace(cleaned, ",", " ")
//!     cleaned = Replace(cleaned, "!", " ")
//!     cleaned = Replace(cleaned, "?", " ")
//!     cleaned = Replace(cleaned, ";", " ")
//!     cleaned = Replace(cleaned, ":", " ")
//!     
//!     GetWords = Split(Trim(cleaned), " ")
//! End Function
//!
//! Public Function CountWords(text As String) As Integer
//!     Dim words() As String
//!     Dim count As Integer
//!     Dim i As Integer
//!     
//!     words = GetWords(text)
//!     count = 0
//!     
//!     For i = LBound(words) To UBound(words)
//!         If Len(Trim(words(i))) > 0 Then
//!             count = count + 1
//!         End If
//!     Next i
//!     
//!     CountWords = count
//! End Function
//!
//! Public Function GetUniqueWords(text As String) As String()
//!     Dim words() As String
//!     Dim dict As Object
//!     Dim i As Integer
//!     Dim result() As String
//!     Dim count As Integer
//!     
//!     Set dict = CreateObject("Scripting.Dictionary")
//!     dict.CompareMode = vbTextCompare
//!     
//!     words = GetWords(text)
//!     
//!     For i = LBound(words) To UBound(words)
//!         Dim word As String
//!         word = Trim(words(i))
//!         If Len(word) > 0 Then
//!             dict(word) = True
//!         End If
//!     Next i
//!     
//!     ReDim result(0 To dict.Count - 1)
//!     Dim keys As Variant
//!     keys = dict.keys
//!     
//!     For i = 0 To dict.Count - 1
//!         result(i) = keys(i)
//!     Next i
//!     
//!     GetUniqueWords = result
//! End Function
//! ```
//!
//! ### Example 4: Import Delimited Data Files
//!
//! ```vb6
//! ' Module: DataImporter
//!
//! Public Function ImportDelimitedFile(filePath As String, _
//!                                     delimiter As String, _
//!                                     Optional hasHeader As Boolean = True) As Variant
//!     Dim fileNum As Integer
//!     Dim fileContent As String
//!     Dim lines() As String
//!     Dim result() As Variant
//!     Dim i As Integer
//!     Dim startRow As Integer
//!     
//!     ' Read file
//!     fileNum = FreeFile
//!     Open filePath For Input As #fileNum
//!     fileContent = Input(LOF(fileNum), #fileNum)
//!     Close #fileNum
//!     
//!     ' Split into lines
//!     lines = Split(fileContent, vbCrLf)
//!     
//!     If hasHeader Then
//!         startRow = 1
//!     Else
//!         startRow = 0
//!     End If
//!     
//!     ' Parse each line
//!     ReDim result(startRow To UBound(lines))
//!     
//!     For i = startRow To UBound(lines)
//!         result(i) = Split(lines(i), delimiter)
//!     Next i
//!     
//!     ImportDelimitedFile = result
//! End Function
//!
//! Public Function GetColumnFromData(data As Variant, columnIndex As Integer) As String()
//!     Dim result() As String
//!     Dim i As Integer
//!     Dim rowCount As Integer
//!     
//!     rowCount = UBound(data) - LBound(data) + 1
//!     ReDim result(0 To rowCount - 1)
//!     
//!     For i = LBound(data) To UBound(data)
//!         Dim row() As String
//!         row = data(i)
//!         
//!         If columnIndex >= LBound(row) And columnIndex <= UBound(row) Then
//!             result(i - LBound(data)) = row(columnIndex)
//!         Else
//!             result(i - LBound(data)) = ""
//!         End If
//!     Next i
//!     
//!     GetColumnFromData = result
//! End Function
//!
//! Public Function FilterRows(data As Variant, columnIndex As Integer, _
//!                            filterValue As String) As Variant
//!     Dim result() As Variant
//!     Dim count As Integer
//!     Dim i As Integer
//!     
//!     ' Count matching rows
//!     count = 0
//!     For i = LBound(data) To UBound(data)
//!         Dim row() As String
//!         row = data(i)
//!         If columnIndex >= LBound(row) And columnIndex <= UBound(row) Then
//!             If row(columnIndex) = filterValue Then
//!                 count = count + 1
//!             End If
//!         End If
//!     Next i
//!     
//!     ' Build result
//!     ReDim result(0 To count - 1)
//!     count = 0
//!     For i = LBound(data) To UBound(data)
//!         row = data(i)
//!         If columnIndex >= LBound(row) And columnIndex <= UBound(row) Then
//!             If row(columnIndex) = filterValue Then
//!                 result(count) = row
//!                 count = count + 1
//!             End If
//!         End If
//!     Next i
//!     
//!     FilterRows = result
//! End Function
//! ```
//!

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

    #[test]
    fn split_basic() {
        let source = r#"
Sub Test()
    Dim parts() As String
    parts = Split("a,b,c", ",")
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_with_variable() {
        let source = r#"
Sub Test()
    Dim text As String
    Dim delimiter As String
    Dim result() As String
    text = "one,two,three"
    delimiter = ","
    result = Split(text, delimiter)
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_default_delimiter() {
        let source = r#"
Sub Test()
    Dim words() As String
    words = Split("The quick brown fox")
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_with_limit() {
        let source = r#"
Sub Test()
    Dim items() As String
    items = Split("a,b,c,d,e", ",", 3)
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_if_statement() {
        let source = r#"
Sub Test()
    If UBound(Split(text, ",")) > 0 Then
        MsgBox "Multiple items"
    End If
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_function_return() {
        let source = r#"
Function ParseCSV(line As String) As String()
    ParseCSV = Split(line, ",")
End Function
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_variable_assignment() {
        let source = r#"
Sub Test()
    Dim fields() As String
    fields = Split(csvLine, ",")
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_array_access() {
        let source = r#"
Sub Test()
    Dim parts() As String
    Dim firstPart As String
    parts = Split("a,b,c", ",")
    firstPart = parts(0)
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_in_loop() {
        let source = r#"
Sub Test()
    Dim parts() As String
    Dim i As Integer
    parts = Split(data, ",")
    For i = 0 To UBound(parts)
        Debug.Print parts(i)
    Next i
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_class_usage() {
        let source = r"
Class Parser
    Public Function GetFields(line As String) As String()
        GetFields = Split(line, vbTab)
    End Function
End Class
";
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_with_statement() {
        let source = r"
Sub Test()
    With parser
        Dim data() As String
        data = Split(.Text, .Delimiter)
    End With
End Sub
";
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_elseif() {
        let source = r#"
Sub Test()
    Dim arr() As String
    If delimiter = "," Then
        arr = Split(text, ",")
    ElseIf delimiter = ";" Then
        arr = Split(text, ";")
    End If
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_select_case() {
        let source = r#"
Sub Test()
    Dim parts() As String
    Select Case fileType
        Case "CSV"
            parts = Split(line, ",")
        Case "TSV"
            parts = Split(line, vbTab)
    End Select
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_do_while() {
        let source = r#"
Sub Test()
    Do While lineNum <= 10
        Dim fields() As String
        fields = Split(lines(lineNum), ",")
        lineNum = lineNum + 1
    Loop
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_do_until() {
        let source = r#"
Sub Test()
    Do Until EOF(1)
        Dim data() As String
        Line Input #1, currentLine
        data = Split(currentLine, ",")
    Loop
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_while_wend() {
        let source = r#"
Sub Test()
    While i < count
        Dim tokens() As String
        tokens = Split(lines(i), " ")
        i = i + 1
    Wend
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_ubound_check() {
        let source = r#"
Sub Test()
    Dim arr() As String
    arr = Split(text, ",")
    If UBound(arr) >= 0 Then
        MsgBox arr(0)
    End If
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_lbound_ubound() {
        let source = r#"
Sub Test()
    Dim parts() As String
    Dim i As Integer
    parts = Split(data, "|")
    For i = LBound(parts) To UBound(parts)
        Debug.Print parts(i)
    Next i
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_vbcrlf() {
        let source = r"
Sub Test()
    Dim lines() As String
    lines = Split(multilineText, vbCrLf)
End Sub
";
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_nested_function() {
        let source = r#"
Sub Test()
    Dim count As Integer
    count = UBound(Split(text, ",")) + 1
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_join_combination() {
        let source = r#"
Sub Test()
    Dim parts() As String
    Dim result As String
    parts = Split(original, ",")
    result = Join(parts, ";")
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_trim_combination() {
        let source = r#"
Sub Test()
    Dim values() As String
    Dim i As Integer
    values = Split(data, ",")
    For i = 0 To UBound(values)
        values(i) = Trim(values(i))
    Next i
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_error_handling() {
        let source = r#"
Sub Test()
    On Error Resume Next
    Dim arr() As String
    arr = Split(text, delimiter)
    If Err.Number <> 0 Then
        MsgBox "Error"
    End If
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_on_error_goto() {
        let source = r#"
Sub Test()
    On Error GoTo ErrorHandler
    Dim fields() As String
    fields = Split(csvData, ",")
    Exit Sub
ErrorHandler:
    MsgBox "Error parsing data"
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_file_path() {
        let source = r#"
Sub Test()
    Dim pathParts() As String
    Dim fileName As String
    pathParts = Split(filePath, "\")
    fileName = pathParts(UBound(pathParts))
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn split_compare_parameter() {
        let source = r"
Sub Test()
    Dim items() As String
    items = Split(text, delimiter, -1, vbTextCompare)
End Sub
";
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    #[allow(clippy::too_many_lines)]
    fn split_key_value_parsing() {
        let source = r#"
Sub Test()
    Dim kvPair As String
    Dim parts() As String
    Dim key As String
    Dim value As String
    kvPair = "name=John"
    parts = Split(kvPair, "=", 2)
    key = parts(0)
    value = parts(1)
End Sub
"#;
        let (cst_opt, _failure) = 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/arrays/split");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }
}