This commit is contained in:
Valk Richard Li
2020-01-23 17:41:55 +08:00
committed by GitHub
parent b7ce093aa5
commit 025108a692
2 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -60,7 +60,7 @@ enum parse_token_type
__call_function,__call_vector,__call_hash,
__normal_statement_block,
__definition,
__function,__ifelse
__function,__conditional
};
void print_parse_token(int type)
@@ -143,7 +143,7 @@ void print_parse_token(int type)
case __normal_statement_block:context="block"; break;
case __definition: context="definition"; break;
case __function: context="function"; break;
case __ifelse: context="if-else"; break;
case __conditional: context="conditional"; break;
default: context="undefined_token";break;
}