Change formating a bit
This commit is contained in:
parent
d5ccf1c0be
commit
57af99e53a
@ -238,9 +238,7 @@ char* compile(tSyntaxElement* syntaxtree) {
|
||||
tSyntaxElement* token = syntaxtree->content.syntax;
|
||||
|
||||
if (strcmp(token->content.string, "def") == 0) {
|
||||
} else
|
||||
|
||||
if (strcmp(token->content.string, "set") == 0) {
|
||||
} else if (strcmp(token->content.string, "set") == 0) {
|
||||
|
||||
compile_enter_tag(&result);
|
||||
|
||||
@ -251,9 +249,7 @@ char* compile(tSyntaxElement* syntaxtree) {
|
||||
|
||||
compile_exit_tag(&result);
|
||||
|
||||
} else
|
||||
|
||||
if (strcmp(token->content.string, "global") == 0) {
|
||||
} else if (strcmp(token->content.string, "global") == 0) {
|
||||
|
||||
compile_enter_tag(&result);
|
||||
|
||||
@ -264,9 +260,7 @@ char* compile(tSyntaxElement* syntaxtree) {
|
||||
|
||||
compile_exit_tag(&result);
|
||||
|
||||
} else
|
||||
|
||||
if (strcmp(token->content.string, "do") == 0) {
|
||||
} else if (strcmp(token->content.string, "do") == 0) {
|
||||
|
||||
compile_enter_tag(&result);
|
||||
|
||||
@ -275,9 +269,7 @@ char* compile(tSyntaxElement* syntaxtree) {
|
||||
|
||||
compile_exit_tag(&result);
|
||||
|
||||
} else
|
||||
|
||||
if (strcmp(token->content.string, "if") == 0) {
|
||||
} else if (strcmp(token->content.string, "if") == 0) {
|
||||
|
||||
compile_enter_tag(&result);
|
||||
|
||||
@ -304,9 +296,7 @@ char* compile(tSyntaxElement* syntaxtree) {
|
||||
|
||||
compile_exit_tag(&result);
|
||||
|
||||
} else
|
||||
|
||||
if (strcmp(token->content.string, "print") == 0) {
|
||||
} else if (strcmp(token->content.string, "print") == 0) {
|
||||
|
||||
string_append(&result, "{{");
|
||||
string_append(&result,compile_expression(token->next));
|
||||
|
Loading…
Reference in New Issue
Block a user