add list support to parser
This commit is contained in:
11
src/parser/list/list.h
Normal file
11
src/parser/list/list.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef LIST_H
|
||||
#define LIST_H
|
||||
#include "../../lexer/token.h" // for Token
|
||||
#include "../parser.h"
|
||||
|
||||
ParsedValue *parse_list(char *file, DArray *tokens,
|
||||
size_t *index);
|
||||
|
||||
void free_parsed_list(void *ptr);
|
||||
|
||||
#endif // LIST_H
|
||||
Reference in New Issue
Block a user