//! AST host capability.
//!
//! Wraps tree-sitter parsing, symbol extraction, and outline generation —
//! the Swift `Sources/ASTEngine/` surface ported into Rust. Implementation
//! lands in follow-up issue B2; this scaffold registers the contract so
//! `burin-code`'s schema-drift tests can lock the public surface today.
use crate;
/// AST capability handle. Stateless today; will own a tree-sitter language
/// registry and parser pool once the implementation lands.
;