Files
hakorune/src/interpreter/objects/mod.rs

16 lines
284 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 ops;
mod methods;
mod fields;