Skip to content

Commit

Permalink
feat(parser): adding an parse call expr and call member
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCiccarino committed Dec 7, 2024
1 parent ce2e596 commit 2e62bbc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/frontend/parser/expressions/parse_call_expr.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#ifndef PARSE_CALL_EXPR_H
#define PARSE_CALL_EXPR_H

#include "frontend/parser/core.h"

AstNode *parse_call_expr(Parser *parser, AstNode *caller);

#endif // PARSE_CALL_EXPR_H
8 changes: 8 additions & 0 deletions include/frontend/parser/expressions/parse_call_member_expr.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#ifndef PARSE_CALL_MEMBER_EXPR_H
#define PARSE_CALL_MEMBER_EXPR_H

#include "frontend/parser/core.h"

AstNode *parse_call_member_expr(Parser *parser, AstNode *statement);

#endif // PARSE_CALL_MEMBER_EXPR_H

0 comments on commit 2e62bbc

Please sign in to comment.