From ef5d799a463a7c0b7e5a454b1bf00b890cfe2ed5 Mon Sep 17 00:00:00 2001 From: Valk Richard Li <48872266+ValKmjolnir@users.noreply.github.com> Date: Mon, 1 Jun 2020 01:23:37 +0800 Subject: [PATCH] Delete balloon_type.h --- balloon/balloon_type.h | 205 ----------------------------------------- 1 file changed, 205 deletions(-) delete mode 100644 balloon/balloon_type.h diff --git a/balloon/balloon_type.h b/balloon/balloon_type.h deleted file mode 100644 index 49536a5..0000000 --- a/balloon/balloon_type.h +++ /dev/null @@ -1,205 +0,0 @@ -#ifndef __BALLOON_TYPE_H__ -#define __BALLOON_TYPE_H__ - - -enum token_type -{ - __token_number=1, - __token_string, - __reserve_word, - __token_identifier, - __token_operator -}; -void print_token(int type) -{ - std::string str; - switch(type) - { - case __token_number: str="number ";break; - case __token_string: str="string ";break; - case __reserve_word: str="reserve word ";break; - case __token_identifier:str="identifier ";break; - case __token_operator: str="operator ";break; - default: str="unknown ";break; - } - std::cout< >= - __and_operator,__or_operator,__nor_operator, // and or ! - __add_operator,__sub_operator, // + - - __mul_operator,__div_operator,__link_operator, // * / ~ - __add_equal,__sub_equal, // += -= - __mul_equal,__div_equal,__link_equal, // *= /= ~= - __left_brace,__right_brace, // {} - __left_bracket,__right_bracket, // [] - __left_curve,__right_curve, // () - __semi,__comma,__colon,__dot, // ; , : . - __var,__func,__return, - __if,__elsif,__else, - __continue,__break, - __for,__forindex,__foreach,__while, - __nil, - //operators & reserve words - __number,__string,__id,__dynamic_id, - //basic elements - - __null_node, - __normal_block, - __array, - __hash, - __root, - __loop, - __ifelse, - __function, - __parameter, - __definition, - __assignment, - __call_array, - __call_hash, - __call_function -}; - -void print_detail_token(int type) -{ - std::string context=""; - switch(type) - { - case __equal: context="="; break; - case __cmp_equal: context="==";break; - case __cmp_not_equal: context="!=";break; - case __cmp_less: context="<"; break; - case __cmp_less_or_equal: context="<=";break; - case __cmp_more: context=">"; break; - case __cmp_more_or_equal: context=">=";break; - case __and_operator: context="and";break; - case __or_operator: context="or"; break; - case __nor_operator: context="!"; break; - case __add_operator: context="+"; break; - case __sub_operator: context="-"; break; - case __mul_operator: context="*"; break; - case __div_operator: context="/"; break; - case __link_operator: context="~"; break; - case __add_equal: context="+=";break; - case __sub_equal: context="-=";break; - case __mul_equal: context="*=";break; - case __div_equal: context="/=";break; - case __link_equal: context="~=";break; - case __left_brace: context="{"; break; - case __right_brace: context="}"; break; - case __left_bracket: context="["; break; - case __right_bracket: context="]"; break; - case __left_curve: context="("; break; - case __right_curve: context=")"; break; - case __semi: context=";"; break; - case __comma: context=","; break; - case __colon: context=":"; break; - case __dot: context="."; break; - case __var: context="var"; break; - case __func: context="func";break; - case __continue: context="continye"; break; - case __break: context="break"; break; - case __for: context="for"; break; - case __forindex: context="forindex";break; - case __foreach: context="foreach";break; - case __while: context="while";break; - case __if: context="if";break; - case __elsif: context="elsif";break; - case __else: context="else";break; - case __return: context="return";break; - case __nil: context="nil";break; - case __id: context="id";break; - case __dynamic_id: context="id...";break; - case __number: context="num";break; - case __string: context="str";break; - - case __null_node: context="null node";break; - case __normal_block: context="block";break; - case __array: context="array";break; - case __hash: context="hash";break; - case __root: context="root";break; - case __loop: context="loop";break; - case __ifelse: context="if-else";break; - case __function: context="function";break; - case __parameter: context="parameter";break; - case __definition: context="definition";break; - case __assignment: context="assignment";break; - case __call_array: context="call array";break; - case __call_hash: context="call hash";break; - case __call_function: context="call func";break; - default: context="undefined token";break; - } - std::cout<