// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB
//! Abstract syntax tree for RQL. The tree is bump-allocated against the source lifetime, so its spans can point
//! back into the original text without copying it. AST shapes are public for external tooling (formatters, linters,
//! the explain renderer), which makes adding or renaming a node a breaking change for them.
use Bump;
use instrument;
use crate::;
pub