2025-08-26 04:34:14 +09:00
|
|
|
/*!
|
|
|
|
|
* 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;
|
2025-09-17 07:43:07 +09:00
|
|
|
mod methods;
|
|
|
|
|
mod ops;
|