runner: split modes (mir/vm/llvm/bench) and extract plugin init; interpreter: split objects into ops/methods/fields; VM logs gated; Phi selection minimal fix; CURRENT_TASK updated; remove legacy backups

This commit is contained in:
Moe Charm
2025-08-26 04:34:14 +09:00
parent 11c149ac2b
commit 1e735d7717
69 changed files with 1023 additions and 992009 deletions

View File

@ -0,0 +1,15 @@
/*!
* Interpreter Objects Module (mod)
*
* Split into submodules:
* - ops.rs: instantiation (execute_new) and helpers
* - methods.rs: constructor-related methods
* - fields.rs: declarations, inheritance, generics utilities
*/
use super::*;
mod ops;
mod methods;
mod fields;