Added support for more literal types and scope resolution operator parsing

This commit is contained in:
WerWolv
2021-01-05 14:42:08 +01:00
parent f137d759c8
commit ceee311efa
7 changed files with 331 additions and 109 deletions

View File

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