Change __block to __normal_stat_block

This commit is contained in:
Valk Richard Li 2019-10-19 19:58:05 +08:00 committed by GitHub
parent ee57994da6
commit 70182fb20b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ enum token_type
__list,__hash,
__hash_member,
__call_function,__list_search,__hash_search,
__block,
__normal_statement_block,
__definition,__assignment,
__function,__loop,__ifelse
};
@ -100,7 +100,7 @@ void print_token(int type)
case __call_function: context="call_func";break;
case __list_search: context="call_list";break;
case __hash_search: context="call_hash";break;
case __block: context="block";break;
case __normal_statement_block:context="block";break;
case __definition: context="definition";break;
case __assignment: context="assignment";break;
case __function: context="function";break;