- nyash.tomlを唯一の真実(SSOT)として依存管理確立 - dev/ci/prodプロファイルによる段階的厳格化実装 - AST結合で宣言/式の曖昧性を根本解決 - Fail-Fast原則をCLAUDE.md/AGENTS.mdに明文化 - VM fallbackでもASTベース using有効化(NYASH_USING_AST=1) - 静的メソッドの is_static=true 修正で解決安定化 - STATICブレークハック既定OFF化で堅牢性向上 🎉 usingシステム完全体への道筋確立!JSONライブラリ・Nyash VM開発が可能に Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
385 B
Rust
12 lines
385 B
Rust
/*!
|
|
* Using resolver utilities (split)
|
|
* - strip: remove `using` lines, inline modules, register aliases/modules
|
|
* - seam: seam logging and optional brace-fix at join points
|
|
*/
|
|
|
|
pub mod strip;
|
|
pub mod seam;
|
|
|
|
// Public re-exports to preserve existing call sites
|
|
pub use strip::{strip_using_and_register, preexpand_at_local, collect_using_and_strip, resolve_prelude_paths_profiled};
|