//! Syntax kinds for **sql-dialect-fmt**, a Snowflake SQL formatter + highlighter toolchain.
//!
//! [`SyntaxKind`] is the single enumeration of every token kind and (eventually) every
//! node kind in the grammar. It is `#[repr(u16)]` and contiguous so it can be cheaply
//! converted to/from the `u16` that the `rowan` lossless tree stores.
//!
//! The lexer produces only *token* kinds; the parser later introduces *node* kinds and
//! assembles the lossless concrete syntax tree (CST). Keeping kinds in one crate lets the
//! lexer, parser, formatter and highlighter all speak the same vocabulary.
//!
//! ## Modules
//! * `kind` — the [`SyntaxKind`] enum plus its `u16` conversions and predicates.
//! * `keyword` — case-insensitive recognition of keyword text ([`keyword_kind`]) plus its
//! dialect-aware reservation ([`keyword_kind_for`], [`KeywordDialect`]).
//! * `types` — canonical built-in type words shared by highlighters and editor integrations.
//! * `dialect` — the [`Dialect`] runtime selector threaded through lexer, parser, and formatter.
//! * `lang` — `rowan` lossless-tree integration, behind the `rowan` feature.
pub use Dialect;
pub use ;
pub use SyntaxKind;
pub use ;
pub use ;