ChatGPT5 Pro設計分析による42%コード削減の完全実現: - crates/nyrt → crates/nyash_kernel 完全移行 - with_legacy_vm_args系統11箇所削除(encode/birth/future/invoke系) - Plugin-First Architecture統一(VM依存根絶) - libnyash_kernel.a生成成功(0エラー・0警告) - LLVM統合更新(build_llvm.sh, ny-llvmc対応) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
363 B
Rust
22 lines
363 B
Rust
pub mod array;
|
|
pub mod birth;
|
|
pub mod console;
|
|
pub mod future;
|
|
pub mod instance;
|
|
pub mod invoke;
|
|
pub mod invoke_core;
|
|
pub mod map;
|
|
pub mod semantics;
|
|
pub mod string;
|
|
|
|
pub use array::*;
|
|
pub use birth::*;
|
|
pub use console::*;
|
|
pub use future::*;
|
|
pub use instance::*;
|
|
pub use invoke::*;
|
|
pub use invoke_core::*;
|
|
pub use map::*;
|
|
pub use semantics::*;
|
|
pub use string::*;
|