mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 01:49:05 +00:00
Started adding Parser
This commit is contained in:
9
Parser/src/Parser.cpp
Normal file
9
Parser/src/Parser.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <Parser.h>
|
||||
|
||||
namespace LX
|
||||
{
|
||||
std::vector<std::unique_ptr<GlobalDeclaration>> TurnTokensIntoAbstractSyntaxTree(std::vector<Token>& tokens, std::ofstream* log)
|
||||
{
|
||||
return std::vector<std::unique_ptr<GlobalDeclaration>>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user