## ✨ AST (abstract sytax tree) 생성을 위한 Parser 구현 - [ ] Node 기본 구조체 ```C typedef struct s_syntax_node { enum e_node_type { NODE_LIST, NODE_PIPELINE, // ... } type; union u_node_value { char *word; struct s_syntax_node child; struct s_binary_operator { char *op; struct s_syntax_node *left; struct s_syntax_node *right; }; // ... } value; } t_syntax_node; ``` - [ ] Node Type 마다 생성 함수 작성 - [ ] list - [ ] and_or - [ ] pipeline - [ ] command - [ ] cmd_prefix - [ ] cmd_word - [ ] cmd_suffix - [ ] io_redir - [ ] assignment_word - [ ] word ## 📝 추가 정보 (선택) - [Bash Reference Manual](https://www.gnu.org/software/bash/manual/bash.html)
✨ AST (abstract sytax tree) 생성을 위한 Parser 구현
Node 기본 구조체
Node Type 마다 생성 함수 작성
📝 추가 정보 (선택)