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
//! VB6 statement parsing.
//!
//! This module contains parsers for all VB6 statements, organized by category:
//! - Control flow (`If`, `Select`, `For`, `Do`, `GoTo`, etc.)
//! - Declarations (`Dim`, `Const`, `ReDim`, `Type`, `Enum`, etc.)
//! - Object operations (`Set`, `With`, `New`)

pub mod control_flow;
pub mod declarations;
pub mod objects;