enhancing the compiler and hcl_execute() for better interactive use

This commit is contained in:
2020-10-08 09:25:54 +00:00
parent 9d5e580387
commit a69434a96f
9 changed files with 99 additions and 97 deletions

View File

@ -1285,8 +1285,9 @@ struct hcl_t
{
struct
{
hcl_oop_byte_t arr; /* byte code array - not part of object memory */
hcl_oob_t* ptr; /* byte code array */
hcl_oow_t len;
hcl_oow_t capa;
} bc;
struct
@ -1650,11 +1651,6 @@ HCL_EXPORT hcl_oop_t hcl_execute (
hcl_t* hcl
);
HCL_EXPORT hcl_oop_t hcl_executefromip (
hcl_t* hcl,
hcl_oow_t initial_ip
);
HCL_EXPORT void hcl_abort (
hcl_t* hcl
);