Added parser project
This commit is contained in:
11
parser/src/Parser.cpp
Normal file
11
parser/src/Parser.cpp
Normal 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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user