| 8 | using CodeInfo::cmdInfoList; |
| 9 | |
| 10 | NodeZeroOP* TakeLastNode() |
| 11 | { |
| 12 | NodeZeroOP* last = nodeList.back(); |
| 13 | nodeList.pop_back(); |
| 14 | return last; |
| 15 | } |
| 16 | |
| 17 | const char* binCommandToText[] = { "+", "-", "*", "/", "**", "%", "<", ">", "<=", ">=", "==", "!=", "<<", ">>", "&", "|", "^", "&&", "||", "^^"}; |
| 18 | const char* unaryCommandToText[] = { "-", "-", "-", "~", "~", "!", "!" }; |
no test coverage detected