Added function calling as well as a few builtin functions

This commit is contained in:
WerWolv
2021-01-07 15:37:37 +01:00
parent b47736b595
commit bef20f7808
8 changed files with 240 additions and 12 deletions

View File

@@ -53,6 +53,7 @@ namespace hex::lang {
return this->m_curr[index].type;
}
ASTNode* parseFunctionCall();
ASTNode* parseScopeResolution(std::vector<std::string> &path);
ASTNode* parseRValue(std::vector<std::string> &path);
ASTNode* parseFactor();