Implement the do-while loop.
This commit is contained in:
parent
976b6d1b1a
commit
ac8e2ff418
|
@ -61,6 +61,7 @@ enum libab_lexer_token_e {
|
||||||
TOKEN_KW_IF,
|
TOKEN_KW_IF,
|
||||||
TOKEN_KW_ELSE,
|
TOKEN_KW_ELSE,
|
||||||
TOKEN_KW_WHILE,
|
TOKEN_KW_WHILE,
|
||||||
|
TOKEN_KW_DO,
|
||||||
TOKEN_LAST
|
TOKEN_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ enum libab_tree_variant_e {
|
||||||
VOID,
|
VOID,
|
||||||
IF,
|
IF,
|
||||||
WHILE,
|
WHILE,
|
||||||
|
DOWHILE,
|
||||||
CALL
|
CALL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ const char* _debug_node_name(libab_tree_variant var) {
|
||||||
"void",
|
"void",
|
||||||
"if",
|
"if",
|
||||||
"while",
|
"while",
|
||||||
|
"dowhile",
|
||||||
"call"
|
"call"
|
||||||
};
|
};
|
||||||
return names[var];
|
return names[var];
|
||||||
|
|
|
@ -14,6 +14,7 @@ libab_result libab_lexer_init(libab_lexer* lexer) {
|
||||||
"if",
|
"if",
|
||||||
"else",
|
"else",
|
||||||
"while",
|
"while",
|
||||||
|
"do"
|
||||||
};
|
};
|
||||||
libab_lexer_token tokens[] = {
|
libab_lexer_token tokens[] = {
|
||||||
TOKEN_CHAR,
|
TOKEN_CHAR,
|
||||||
|
@ -22,6 +23,7 @@ libab_result libab_lexer_init(libab_lexer* lexer) {
|
||||||
TOKEN_KW_IF,
|
TOKEN_KW_IF,
|
||||||
TOKEN_KW_ELSE,
|
TOKEN_KW_ELSE,
|
||||||
TOKEN_KW_WHILE,
|
TOKEN_KW_WHILE,
|
||||||
|
TOKEN_KW_DO
|
||||||
};
|
};
|
||||||
const size_t count = sizeof(tokens)/sizeof(libab_lexer_token);
|
const size_t count = sizeof(tokens)/sizeof(libab_lexer_token);
|
||||||
|
|
||||||
|
|
40
src/parser.c
40
src/parser.c
|
@ -266,6 +266,44 @@ libab_result _parse_while(struct parser_state* state, libab_tree** store_into) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
libab_result _parse_dowhile(struct parser_state* state, libab_tree** store_into) {
|
||||||
|
libab_result result = LIBAB_SUCCESS;
|
||||||
|
libab_tree* value = NULL;
|
||||||
|
libab_tree* condition = NULL;
|
||||||
|
|
||||||
|
if(_parser_is_type(state, TOKEN_KW_DO)) {
|
||||||
|
result = _parser_construct_node_vec(state->current_match, store_into);
|
||||||
|
if(result == LIBAB_SUCCESS) {
|
||||||
|
(*store_into)->variant = DOWHILE;
|
||||||
|
_parser_state_step(state);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
result = LIBAB_UNEXPECTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(result == LIBAB_SUCCESS) {
|
||||||
|
PARSE_CHILD(result, state, _parse_expression, value, &(*store_into)->children);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(result == LIBAB_SUCCESS) {
|
||||||
|
result = _parser_consume_type(state, TOKEN_KW_WHILE);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(result == LIBAB_SUCCESS) {
|
||||||
|
result = _parser_consume_char(state, '(');
|
||||||
|
}
|
||||||
|
|
||||||
|
if(result == LIBAB_SUCCESS) {
|
||||||
|
PARSE_CHILD(result, state, _parse_expression, condition, &(*store_into)->children);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(result == LIBAB_SUCCESS) {
|
||||||
|
result = _parser_consume_char(state, ')');
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
libab_result _parse_call(struct parser_state* state, libab_tree** store_into) {
|
libab_result _parse_call(struct parser_state* state, libab_tree** store_into) {
|
||||||
libab_result result = LIBAB_SUCCESS;
|
libab_result result = LIBAB_SUCCESS;
|
||||||
libab_tree* temp;
|
libab_tree* temp;
|
||||||
|
@ -326,6 +364,8 @@ libab_result _parse_atom(struct parser_state* state, libab_tree** store_into) {
|
||||||
result = _parse_if(state, store_into);
|
result = _parse_if(state, store_into);
|
||||||
} else if(_parser_is_type(state, TOKEN_KW_WHILE)) {
|
} else if(_parser_is_type(state, TOKEN_KW_WHILE)) {
|
||||||
result = _parse_while(state, store_into);
|
result = _parse_while(state, store_into);
|
||||||
|
} else if(_parser_is_type(state, TOKEN_KW_DO)) {
|
||||||
|
result = _parse_dowhile(state, store_into);
|
||||||
} else if(_parser_is_char(state, '{')) {
|
} else if(_parser_is_char(state, '{')) {
|
||||||
result = _parse_block(state, store_into, 1);
|
result = _parse_block(state, store_into, 1);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
int libab_tree_has_vector(libab_tree_variant variant) {
|
int libab_tree_has_vector(libab_tree_variant variant) {
|
||||||
return variant == BASE || variant == OP ||
|
return variant == BASE || variant == OP ||
|
||||||
variant == UNARY_OP || variant == BLOCK ||
|
variant == UNARY_OP || variant == BLOCK ||
|
||||||
variant == IF || variant == CALL || variant == WHILE;
|
variant == IF || variant == CALL || variant == WHILE ||
|
||||||
|
variant == DOWHILE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int libab_tree_has_string(libab_tree_variant variant) {
|
int libab_tree_has_string(libab_tree_variant variant) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user