rudy_parser/
lib.rs

1//! Shared parsing utilities for types and expressions
2//!
3//! This module provides common parsing functionality using the `unsynn` crate
4//! for both type parsing (used in DWARF name resolution) and expression parsing
5//! (used in LLDB integration).
6
7pub mod expressions;
8pub mod types;
9
10pub use expressions::{Expression, parse_expression};
11pub use types::{ParsedSymbol, Path, Type, parse_symbol, parse_type};