Added parser project

This commit is contained in:
Pasha Bibko
2025-07-23 19:33:33 +01:00
parent 6a534ba635
commit 86a178b7d5
10 changed files with 93 additions and 30 deletions

11
parser/src/Parser.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <LXC.h>
#include <Parser.h>
namespace LXC::Parser
{
Util::ReturnVal<std::vector<FunctionAST>, ParserError> TurnTokensIntoAST(const Lexer::LexerOutput& input)
{
return Util::FunctionFail<ParserError>();
}
}