added the class_enter and class_exit instructions - partially implemented yet

This commit is contained in:
2021-06-19 17:19:24 +00:00
parent 2141768b6f
commit 5cd8bc15ed
4 changed files with 36 additions and 10 deletions

View File

@ -387,7 +387,8 @@ typedef struct hcl_cframe_t hcl_cframe_t;
enum hcl_cblk_type_t
{
HCL_CBLK_TYPE_LOOP,
HCL_CBLK_TYPE_TRY
HCL_CBLK_TYPE_TRY,
HCL_CBLK_TYPE_CLASS
};
typedef enum hcl_cblk_type_t hcl_cblk_type_t;