enhanced the compiler to handle array enclosed in #().

added partial code to handle dictionary enclosed in #{}
This commit is contained in:
2018-02-07 07:35:30 +00:00
parent 77f4e53a77
commit adc7e89ca7
9 changed files with 581 additions and 71 deletions

View File

@ -307,6 +307,11 @@ struct hcl_cframe_t
{
hcl_ooi_t body_pos;
} post_if;
struct
{
hcl_ooi_t index;
} array_list;
} u;
};