// Copyright 2026 Thomas Santerre and Moderately AI Inc.
//
// SPDX-License-Identifier: MIT OR Apache-2.0
use ;
use crateInterpreterError;
/// Parse Python source code into an AST suite (list of statements).
///
/// Applies CPython's compile-time private-name mangling (`__x` inside a class
/// body → `_ClassName__x`) as a post-parse AST pass.