Add "neg" and "not" keywords
This commit is contained in:
parent
8bf0af96ee
commit
a1d14e8cfa
@ -175,6 +175,16 @@ char* compile_expression(tSyntaxElement* syntaxelement) {
|
|||||||
string_append(&result,compile_expression(token->next->next));
|
string_append(&result,compile_expression(token->next->next));
|
||||||
string_append(&result,"]");
|
string_append(&result,"]");
|
||||||
|
|
||||||
|
} else if (strcmp(token->content.string, "neg") == 0) {
|
||||||
|
|
||||||
|
string_append(&result,"-");
|
||||||
|
string_append(&result,compile_expression_wrapped(token->next));
|
||||||
|
|
||||||
|
} else if (strcmp(token->content.string, "not") == 0) {
|
||||||
|
|
||||||
|
string_append(&result,"not");
|
||||||
|
string_append(&result,compile_expression_wrapped(token->next));
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
string_append(&result,token->content.string);
|
string_append(&result,token->content.string);
|
||||||
|
Loading…
Reference in New Issue
Block a user