vb6parse 1.0.0

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
//! # `CreateObject` Function
//!
//! Creates and returns a reference to an `ActiveX` object (`COM` object).
//!
//! ## Syntax
//!
//! ```vb
//! CreateObject(class, [servername])
//! ```
//!
//! ## Parameters
//!
//! - **`class`**: Required. `String` expression representing the programmatic identifier (`ProgID`) of
//!   the object to create. The format is typically "Application.ObjectType" or
//!   "Library.Class".
//!
//! - **`servername`**: Optional. `String` expression representing the name of the network server where
//!   the object will be created. If omitted or an empty string (""), the object is created on the
//!   local machine. This parameter is only used for `DCOM` (`Distributed COM`).
//!
//! ## Return Value
//!
//! Returns an `Object` reference to the created `COM` object. The actual type depends on the class
//! specified. Returns `Nothing` if the object cannot be created.
//!
//! ## Remarks
//!
//! `CreateObject` is used to instantiate `COM` objects at runtime. This is known as late binding,
//! as opposed to early binding where you reference the object library and declare objects with
//! specific types at design time.
//!
//! **Important Characteristics:**
//!
//! - Creates objects using late binding (runtime resolution)
//! - Requires the `COM` object to be registered on the system
//! - Returns generic `Object` type (requires type casting for `IntelliSense`)
//! - Slower than early binding but more flexible
//! - No compile-time type checking
//! - Enables automation of external applications
//! - Can create objects on remote servers (`DCOM`)
//!
//! ## Common `ProgID`s
//!
//! | `ProgID` | Description |
//! |--------|-------------|
//! | "Excel.Application" | Microsoft Excel application |
//! | "Word.Application" | Microsoft Word application |
//! | "Scripting.FileSystemObject" | File system object for file operations |
//! | "Scripting.Dictionary" | Dictionary object for key-value pairs |
//! | "ADODB.Connection" | ADO database connection |
//! | "ADODB.Recordset" | ADO recordset for database queries |
//! | "Shell.Application" | Windows Shell automation |
//! | "WScript.Shell" | Windows Script Host Shell object |
//! | "MSXML2.DOMDocument" | XML DOM parser |
//! | "CDO.Message" | Collaboration Data Objects for email |
//! | "InternetExplorer.Application" | Internet Explorer automation |
//! | "Outlook.Application" | Microsoft Outlook application |
//! | "Access.Application" | Microsoft Access application |
//!
//! ## Examples
//!
//! ### Basic Usage
//!
//! ```vb
//! ' Create an Excel application object
//! Dim xlApp As Object
//! Set xlApp = CreateObject("Excel.Application")
//! xlApp.Visible = True
//! xlApp.Workbooks.Add
//! Set xlApp = Nothing
//!
//! ' Create a FileSystemObject
//! Dim fso As Object
//! Set fso = CreateObject("Scripting.FileSystemObject")
//! ```
//!
//! ### Microsoft Excel Automation
//!
//! ```vb
//! Sub CreateExcelSpreadsheet()
//!     Dim xlApp As Object
//!     Dim xlBook As Object
//!     Dim xlSheet As Object
//!     
//!     On Error GoTo ErrorHandler
//!     
//!     ' Create Excel application
//!     Set xlApp = CreateObject("Excel.Application")
//!     xlApp.Visible = True
//!     
//!     ' Add a workbook
//!     Set xlBook = xlApp.Workbooks.Add
//!     Set xlSheet = xlBook.Worksheets(1)
//!     
//!     ' Add data
//!     xlSheet.Cells(1, 1).Value = "Name"
//!     xlSheet.Cells(1, 2).Value = "Value"
//!     xlSheet.Cells(2, 1).Value = "Item 1"
//!     xlSheet.Cells(2, 2).Value = 100
//!     
//!     ' Clean up
//!     Set xlSheet = Nothing
//!     Set xlBook = Nothing
//!     xlApp.Quit
//!     Set xlApp = Nothing
//!     
//!     Exit Sub
//!     
//! ErrorHandler:
//!     MsgBox "Error: " & Err.Description
//!     If Not xlApp Is Nothing Then
//!         xlApp.Quit
//!         Set xlApp = Nothing
//!     End If
//! End Sub
//! ```
//!
//! ### File System Operations
//!
//! ```vb
//! Function FileExists(filePath As String) As Boolean
//!     Dim fso As Object
//!     Set fso = CreateObject("Scripting.FileSystemObject")
//!     FileExists = fso.FileExists(filePath)
//!     Set fso = Nothing
//! End Function
//!
//! Function GetFileSize(filePath As String) As Long
//!     Dim fso As Object
//!     Dim file As Object
//!     
//!     Set fso = CreateObject("Scripting.FileSystemObject")
//!     If fso.FileExists(filePath) Then
//!         Set file = fso.GetFile(filePath)
//!         GetFileSize = file.Size
//!         Set file = Nothing
//!     End If
//!     Set fso = Nothing
//! End Function
//! ```
//!
//! ## Common Patterns
//!
//! ### Dictionary for Key-Value Storage
//!
//! ```vb
//! Function CreateDictionary() As Object
//!     Dim dict As Object
//!     Set dict = CreateObject("Scripting.Dictionary")
//!     
//!     ' Add items
//!     dict.Add "Name", "John Doe"
//!     dict.Add "Age", 30
//!     dict.Add "City", "New York"
//!     
//!     Set CreateDictionary = dict
//! End Function
//! ```
//!
//! ### Database Connection
//!
//! ```vb
//! Function OpenDatabase(connectionString As String) As Object
//!     Dim conn As Object
//!     
//!     On Error GoTo ErrorHandler
//!     
//!     Set conn = CreateObject("ADODB.Connection")
//!     conn.Open connectionString
//!     
//!     Set OpenDatabase = conn
//!     Exit Function
//!     
//! ErrorHandler:
//!     MsgBox "Database error: " & Err.Description
//!     Set OpenDatabase = Nothing
//! End Function
//! ```
//!
//! ### XML Document Processing
//!
//! ```vb
//! Function LoadXMLFile(filePath As String) As Object
//!     Dim xmlDoc As Object
//!     
//!     Set xmlDoc = CreateObject("MSXML2.DOMDocument")
//!     xmlDoc.async = False
//!     
//!     If xmlDoc.Load(filePath) Then
//!         Set LoadXMLFile = xmlDoc
//!     Else
//!         MsgBox "Error loading XML: " & xmlDoc.parseError.reason
//!         Set LoadXMLFile = Nothing
//!     End If
//! End Function
//! ```
//!
//! ### Shell Commands
//!
//! ```vb
//! Sub RunCommand(command As String)
//!     Dim shell As Object
//!     Set shell = CreateObject("WScript.Shell")
//!     shell.Run command, 1, True  ' Wait for completion
//!     Set shell = Nothing
//! End Sub
//!
//! Function GetEnvironmentVariable(varName As String) As String
//!     Dim shell As Object
//!     Set shell = CreateObject("WScript.Shell")
//!     GetEnvironmentVariable = shell.ExpandEnvironmentStrings("%" & varName & "%")
//!     Set shell = Nothing
//! End Function
//! ```
//!
//! ### Email Sending (CDO)
//!
//! ```vb
//! Sub SendEmail(toAddr As String, subject As String, body As String)
//!     Dim msg As Object
//!     Dim config As Object
//!     
//!     Set msg = CreateObject("CDO.Message")
//!     Set config = CreateObject("CDO.Configuration")
//!     
//!     ' Configure SMTP settings
//!     With config.Fields
//!         .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
//!         .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.example.com"
//!         .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
//!         .Update
//!     End With
//!     
//!     ' Send message
//!     With msg
//!         Set .Configuration = config
//!         .To = toAddr
//!         .From = "sender@example.com"
//!         .Subject = subject
//!         .TextBody = body
//!         .Send
//!     End With
//!     
//!     Set msg = Nothing
//!     Set config = Nothing
//! End Sub
//! ```
//!
//! ### Word Document Creation
//!
//! ```vb
//! Sub CreateWordDocument()
//!     Dim wordApp As Object
//!     Dim wordDoc As Object
//!     
//!     Set wordApp = CreateObject("Word.Application")
//!     wordApp.Visible = True
//!     
//!     Set wordDoc = wordApp.Documents.Add
//!     wordDoc.Content.Text = "This is a test document."
//!     
//!     Set wordDoc = Nothing
//!     Set wordApp = Nothing
//! End Sub
//! ```
//!
//! ### Registry Access
//!
//! ```vb
//! Function ReadRegistry(keyPath As String) As String
//!     Dim shell As Object
//!     Set shell = CreateObject("WScript.Shell")
//!     
//!     On Error Resume Next
//!     ReadRegistry = shell.RegRead(keyPath)
//!     
//!     Set shell = Nothing
//! End Function
//!
//! Sub WriteRegistry(keyPath As String, value As String)
//!     Dim shell As Object
//!     Set shell = CreateObject("WScript.Shell")
//!     shell.RegWrite keyPath, value
//!     Set shell = Nothing
//! End Sub
//! ```
//!
//! ### HTTP Request
//!
//! ```vb
//! Function GetWebPage(url As String) As String
//!     Dim http As Object
//!     
//!     Set http = CreateObject("MSXML2.XMLHTTP")
//!     http.Open "GET", url, False
//!     http.Send
//!     
//!     If http.Status = 200 Then
//!         GetWebPage = http.responseText
//!     End If
//!     
//!     Set http = Nothing
//! End Function
//! ```
//!
//! ## Advanced Usage
//!
//! ### Remote Object Creation (DCOM)
//!
//! ```vb
//! Sub CreateRemoteObject()
//!     Dim obj As Object
//!     
//!     ' Create object on remote server
//!     Set obj = CreateObject("MyApp.MyClass", "\\ServerName")
//!     
//!     ' Use the remote object
//!     obj.DoSomething
//!     
//!     Set obj = Nothing
//! End Sub
//! ```
//!
//! ### Object Factory Pattern
//!
//! ```vb
//! Function CreateObjectSafe(progID As String) As Object
//!     On Error GoTo ErrorHandler
//!     
//!     Set CreateObjectSafe = CreateObject(progID)
//!     Exit Function
//!     
//! ErrorHandler:
//!     MsgBox "Failed to create object: " & progID & vbCrLf & _
//!            "Error: " & Err.Description, vbCritical
//!     Set CreateObjectSafe = Nothing
//! End Function
//! ```
//!
//! ### Version-Specific Object Creation
//!
//! ```vb
//! Function CreateExcelObject() As Object
//!     On Error Resume Next
//!     
//!     ' Try different versions in order of preference
//!     Set CreateExcelObject = CreateObject("Excel.Application.16")  ' Office 2016
//!     If CreateExcelObject Is Nothing Then
//!         Set CreateExcelObject = CreateObject("Excel.Application.15")  ' Office 2013
//!     End If
//!     If CreateExcelObject Is Nothing Then
//!         Set CreateExcelObject = CreateObject("Excel.Application")  ' Any version
//!     End If
//!     
//!     On Error GoTo 0
//! End Function
//! ```
//!
//! ## Error Handling
//!
//! ```vb
//! Function CreateObjectWithErrorHandling(progID As String) As Object
//!     On Error GoTo ErrorHandler
//!     
//!     Set CreateObjectWithErrorHandling = CreateObject(progID)
//!     Exit Function
//!     
//! ErrorHandler:
//!     Select Case Err.Number
//!         Case 429  ' ActiveX component can't create object
//!             MsgBox "The COM object '" & progID & "' is not registered on this system.", _
//!                    vbCritical, "Object Not Found"
//!         Case 70   ' Permission denied
//!             MsgBox "Permission denied creating object: " & progID, vbCritical
//!         Case Else
//!             MsgBox "Error creating object: " & progID & vbCrLf & _
//!                    "Error " & Err.Number & ": " & Err.Description, vbCritical
//!     End Select
//!     
//!     Set CreateObjectWithErrorHandling = Nothing
//! End Function
//! ```
//!
//! ### Common Errors
//!
//! - **Error 429** (`ActiveX` component can't create object): `Object` not registered or not installed
//! - **Error 70** (Permission denied): Insufficient permissions to create the object
//! - **Error 462** (The remote server machine does not exist or is unavailable): `DCOM` server issue
//! - **Error 13** (Type mismatch): Invalid `ProgID` format
//!
//! ## Performance Considerations
//!
//! - Late binding (`CreateObject`) is slower than early binding
//! - No `IntelliSense` or compile-time checking with `CreateObject`
//! - Reuse objects when possible instead of creating multiple instances
//! - Always set objects to `Nothing` when done to release resources
//! - Creating objects on remote servers has network overhead
//!
//! ## Early Binding vs Late Binding
//!
//! ### Late Binding (`CreateObject`)
//! ```vb
//! Dim xlApp As Object  ' Generic Object type
//! Set xlApp = CreateObject("Excel.Application")
//! xlApp.Visible = True  ' No IntelliSense
//! ```
//!
//! **Advantages:**
//! - No reference needed at design time
//! - Works with any version of the COM object
//! - More flexible for distribution
//!
//! **Disadvantages:**
//! - Slower performance
//! - No `IntelliSense`
//! - No compile-time checking
//! - Errors only at runtime
//!
//! ### Early Binding (Object Library Reference)
//! ```vb
//! ' Add reference to "Microsoft Excel XX.0 Object Library"
//! Dim xlApp As Excel.Application
//! Set xlApp = New Excel.Application
//! xlApp.Visible = True  ' IntelliSense available
//! ```
//!
//! **Advantages:**
//! - Faster performance
//! - `IntelliSense` support
//! - Compile-time checking
//! - Better debugging
//!
//! **Disadvantages:**
//! - Requires reference at design time
//! - Version-specific
//! - Larger deployment package
//!
//! ## Best Practices
//!
//! ### Always Clean Up Objects
//!
//! ```vb
//! Sub ProperCleanup()
//!     Dim xlApp As Object
//!     
//!     On Error GoTo ErrorHandler
//!     
//!     Set xlApp = CreateObject("Excel.Application")
//!     ' Use the object...
//!     
//!     ' Clean up
//!     If Not xlApp Is Nothing Then
//!         xlApp.Quit
//!         Set xlApp = Nothing
//!     End If
//!     Exit Sub
//!     
//! ErrorHandler:
//!     If Not xlApp Is Nothing Then
//!         xlApp.Quit
//!         Set xlApp = Nothing
//!     End If
//! End Sub
//! ```
//!
//! ### Check Object Creation Success
//!
//! ```vb
//! Dim obj As Object
//! Set obj = CreateObject("Some.Object")
//! If obj Is Nothing Then
//!     MsgBox "Failed to create object"
//!     Exit Sub
//! End If
//! ```
//!
//! ### Use Specific Error Handling
//!
//! ```vb
//! On Error Resume Next
//! Set obj = CreateObject("Excel.Application")
//! If Err.Number <> 0 Then
//!     MsgBox "Excel not available: " & Err.Description
//!     Exit Sub
//! End If
//! On Error GoTo 0
//! ```
//!
//! ## Limitations
//!
//! - Requires COM object to be registered on the system
//! - No compile-time type checking
//! - Slower than early binding
//! - No `IntelliSense` support in IDE
//! - `DCOM` requires proper network and security configuration
//! - Cannot create objects with parameterized constructors
//! - Limited to COM/ActiveX objects only
//!
//! ## Related Functions
//!
//! - `GetObject`: Gets reference to existing object or creates from file
//! - `New`: Creates early-bound object (requires reference)
//! - `Set`: Assigns object reference
//! - `Nothing`: Releases object reference
//! - `Is`: Compares object references
//! - `TypeName`: Returns type name of object

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

    #[test]
    fn createobject_basic() {
        let source = r#"
Set obj = CreateObject("Excel.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_fso() {
        let source = r#"
Set fso = CreateObject("Scripting.FileSystemObject")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_dictionary() {
        let source = r#"
Set dict = CreateObject("Scripting.Dictionary")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_with_server() {
        let source = r#"
Set obj = CreateObject("MyApp.MyClass", "\\ServerName")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_adodb_connection() {
        let source = r#"
Set conn = CreateObject("ADODB.Connection")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_xml() {
        let source = r#"
Set xmlDoc = CreateObject("MSXML2.DOMDocument")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_shell() {
        let source = r#"
Set shell = CreateObject("WScript.Shell")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_in_function() {
        let source = r#"
Function GetFileSystem() As Object
    Set GetFileSystem = CreateObject("Scripting.FileSystemObject")
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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_with_error_handling() {
        let source = r#"
On Error Resume Next
Set obj = CreateObject("Excel.Application")
If Err.Number <> 0 Then
    MsgBox "Error"
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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_word() {
        let source = r#"
Set wordApp = CreateObject("Word.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_with_assignment() {
        let source = r#"
Dim xlApp As Object
Set xlApp = CreateObject("Excel.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_cdo_message() {
        let source = r#"
Set msg = CreateObject("CDO.Message")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_http() {
        let source = r#"
Set http = CreateObject("MSXML2.XMLHTTP")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_in_if() {
        let source = r#"
If CreateObject("Excel.Application") Is Nothing Then
    MsgBox "Failed"
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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_access() {
        let source = r#"
Set accApp = CreateObject("Access.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_outlook() {
        let source = r#"
Set outlookApp = CreateObject("Outlook.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_recordset() {
        let source = r#"
Set rs = CreateObject("ADODB.Recordset")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_with_version() {
        let source = r#"
Set xlApp = CreateObject("Excel.Application.16")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_internet_explorer() {
        let source = r#"
Set ie = CreateObject("InternetExplorer.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_in_sub() {
        let source = r#"
Sub Initialize()
    Set obj = CreateObject("Scripting.FileSystemObject")
End Sub
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_shell_application() {
        let source = r#"
Set shell = CreateObject("Shell.Application")
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_multiple_in_function() {
        let source = r#"
Function SendEmail()
    Set msg = CreateObject("CDO.Message")
    Set config = CreateObject("CDO.Configuration")
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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_in_select_case() {
        let source = r#"
Select Case appType
    Case "Excel"
        Set app = CreateObject("Excel.Application")
    Case "Word"
        Set app = CreateObject("Word.Application")
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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_with_immediate_use() {
        let source = r#"
result = CreateObject("Scripting.FileSystemObject").FileExists(path)
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn createobject_with_whitespace() {
        let source = r#"
Set obj = CreateObject( "Excel.Application" )
"#;
        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/objects/createobject",
        );
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }
}