added more code for namespace handling.

added initial code to define a pool dicitonary
fixed a compiler bug in resolving a class variable
This commit is contained in:
hyunghwan.chung
2015-07-14 13:35:18 +00:00
parent 3bb121c09d
commit b5d94ef6ea
8 changed files with 283 additions and 63 deletions

View File

@ -189,6 +189,7 @@ static char* syntax_error_msg[] =
". expected",
"| expected",
"> expected",
":= expected",
"identifier expected",
"integer expected",
"primitive: expected",
@ -215,7 +216,9 @@ static char* syntax_error_msg[] =
"too large block",
"wrong primitive number",
"#include error",
"wrong namespace name"
"wrong namespace name",
"duplicate pool dictionary name",
"literal expected"
};
stix_uch_t str_stix[] = { 'S', 't', 'i', 'x' };