// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright by contributors to this project.
// SPDX-License-Identifier: (Apache-2.0 OR MIT)
//! Expression parsing and evaluation.
//!
//! Uses `ruff_python_parser` to parse Python expression syntax into an AST,
//! then evaluates with a custom bounded evaluator. This mirrors the Python
//! implementation which uses `ast.parse()` + a custom `Evaluator` class.
pub
pub use Evaluator;
pub use ;
pub use ;