diff --git a/src/compile.c b/src/compile.c index 40b6ff5..2a1e005 100644 --- a/src/compile.c +++ b/src/compile.c @@ -420,6 +420,22 @@ char* compile(tSyntaxElement* syntaxtree) { compile_exit_tag(&result); + } else if (strcmp(token->content.string, "break") == 0) { + + compile_enter_tag(&result); + + string_append(&result, "break"); + + compile_exit_tag(&result); + + } else if (strcmp(token->content.string, "continue") == 0) { + + compile_enter_tag(&result); + + string_append(&result, "continue"); + + compile_exit_tag(&result); + } else if (strcmp(token->content.string, "formap") == 0) { compile_enter_tag(&result);