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 19a672af45
commit 979ba97769
9 changed files with 581 additions and 71 deletions

View File

@ -837,7 +837,8 @@ static char* syntax_error_msg[] =
"else without if",
"break outside loop",
"invalid callable"
"invalid callable",
"unbalanced key/value pair"
};
static void print_synerr (hcl_t* hcl)