first attempt in implementing full OO
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -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' */
|
||||
|
||||
/* ============================================================================= */
|
||||
|
||||
|
Reference in New Issue
Block a user