Files
hakorune/src/archive/interpreter_legacy/objects/mod.rs

15 lines
283 B
Rust
Raw Normal View History

/*!
* 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 fields;
mod methods;
mod ops;