-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(parser): adding an parse call expr and call member
- Loading branch information
1 parent
ce2e596
commit 2e62bbc
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |