first attempt in implementing full OO
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-03-02 14:59:27 +09:00
parent 4afb064530
commit def1e7349c
3 changed files with 673 additions and 14 deletions

View File

@ -1632,10 +1632,16 @@ struct hcl_t
hcl_oop_process_scheduler_t processor; /* instance of ProcessScheduler */
hcl_oop_process_t nil_process; /* instance of Process */
hcl_oop_class_t class_apex; /* class 'Apex' */
hcl_oop_class_t class_object; /* class 'Object' */
hcl_oop_class_t class_undefobj; /* class 'UndefinedObject' */
hcl_oop_class_t class_class; /* class 'Class' */
hcl_oop_class_t class_symbol; /* class 'Symbol' */
hcl_oop_class_t class_string; /* class 'String' */
hcl_oop_class_t class_boolean; /* class 'String' */
hcl_oop_class_t class_true; /* class 'True' */
hcl_oop_class_t class_false; /* class 'False' */
hcl_oop_class_t class_system; /* class 'System' */
/* ============================================================================= */