feat(parser): parse_list() implemented
This commit is contained in:
parent
f33498fb13
commit
ed42f0b93d
2 changed files with 50 additions and 16 deletions
|
|
@ -17,9 +17,6 @@
|
|||
|
||||
struct ast *get_ast()
|
||||
{
|
||||
// struct list *result_list = NULL;
|
||||
// struct ast *current_node = NULL;
|
||||
|
||||
struct token *token = PEEK_TOKEN();
|
||||
|
||||
if (token->type == TOKEN_EOF)
|
||||
|
|
@ -31,15 +28,11 @@ struct ast *get_ast()
|
|||
else if (token->type == TOKEN_NEWLINE)
|
||||
{
|
||||
token = pop_token();
|
||||
// TODO
|
||||
// return ast EMPTY.
|
||||
return ast_create_void();
|
||||
}
|
||||
else // TOKEN WORD
|
||||
{
|
||||
// TODO
|
||||
// call parse_list
|
||||
current_node = parse_simple_command();
|
||||
result_list = list_append(result_list, current_node);
|
||||
current_node = parse_list();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -28,6 +28,23 @@ static bool isterminator(struct token *token)
|
|||
}
|
||||
}
|
||||
|
||||
/* @brief: returns true if token is an end of list indicator.
|
||||
*/
|
||||
static bool is_end_of_list(struct token *token)
|
||||
{
|
||||
if (token == NULL)
|
||||
return false;
|
||||
|
||||
switch (token->type)
|
||||
{
|
||||
case TOKEN_NEWLINE:
|
||||
case TOKEN_EOF:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// === Functions
|
||||
|
||||
/* Parses a simple list of words (command and arguments)
|
||||
|
|
@ -49,6 +66,30 @@ struct ast *parse_simple_command(void)
|
|||
return result;
|
||||
}
|
||||
|
||||
struct ast *parse_list(void)
|
||||
{
|
||||
struct list *result_list = NULL;
|
||||
struct ast *current_node = NULL;
|
||||
|
||||
struct token *token = PEEK_TOKEN();
|
||||
|
||||
while (!is_end_of_list(token))
|
||||
{
|
||||
if (token->type == TOKEN_SEMICOLON)
|
||||
{
|
||||
result_list = list_append(result_list, current_node);
|
||||
}
|
||||
else
|
||||
{
|
||||
// TODO use parse_and_or() instead.
|
||||
current_node = parse_simple_command();
|
||||
}
|
||||
token = PEEK_TOKEN();
|
||||
}
|
||||
|
||||
return ast_create_list(result_list);
|
||||
}
|
||||
|
||||
struct ast *parse_if_rule(void)
|
||||
{
|
||||
// If condition
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue