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
//! Object manipulation statements for VB6 CST.
//!
//! This module handles parsing of VB6 statements that manipulate objects:
//! - `Call` - Explicitly call a procedure or method
//! - `RaiseEvent` - Fire a custom event
//! - `Set` - Assign object references
//! - `With` - Reference an object multiple times without repeating its name
//!
//! All parsers in this module construct concrete syntax tree nodes using the `Parser` type.
//!
//! # Module Organization
//!
//! The object manipulation statement parsers are organized into focused submodules:
//! - [`call`] - `Call` statements and procedure calls
//! - [`events`] - `RaiseEvent` statements for custom events
//! - [`set`] - `Set` statements for object reference assignment
//! - [`with_block`] - `With...End With` blocks for simplified object access
//!
//! Each submodule implements parser methods as `Parser` extensions and includes
//! comprehensive tests with snapshot-based verification.
pub
pub
pub
pub
use crateToken;
use crateParser;