shuck-ast 0.0.21

AST types for parsed shell scripts
Documentation
#![warn(missing_docs)]
#![cfg_attr(not(test), warn(clippy::unwrap_used))]

//! AST, token, and span types shared across the Shuck workspace.
//!
//! `shuck-parser` produces these data structures, while crates such as `shuck-indexer`,
//! `shuck-linter`, `shuck-semantic`, and `shuck-formatter` consume them.

#[allow(missing_docs)]
mod ast;
#[allow(missing_docs)]
mod name;
#[allow(missing_docs)]
mod span;
#[allow(missing_docs)]
mod tokens;

/// Parsed shell AST nodes and related syntax tree types.
pub use ast::*;
/// Identifier names used throughout the shell AST.
pub use name::Name;
/// Source positions, spans, and text range utilities.
pub use span::{Position, Span, TextRange, TextSize};
/// Token kinds emitted by the lexer.
pub use tokens::TokenKind;