codanna 0.9.19

Code Intelligence for Large Language Models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Swift language support for Codanna
//!
//! Provides parsing, behavior, and resolution for Swift source files.

pub mod audit;
pub mod behavior;
pub mod definition;
pub mod parser;
pub mod resolution;

pub use behavior::SwiftBehavior;
pub use definition::SwiftLanguage;
pub use parser::SwiftParser;
pub use resolution::{SwiftInheritanceResolver, SwiftResolutionContext};

pub(crate) use definition::register;