Files
MIRROR-LX-OriginalRepo/common/Parser.h
2025-04-16 20:00:28 +01:00

22 lines
326 B
C++

#pragma once
#include <Lexer.h>
#include <LLVM.h>
#include <fstream>
#include <vector>
#include <memory>
namespace LX
{
struct GlobalDeclaration
{
};
struct FunctionDeclaration
{
};
std::vector<std::unique_ptr<GlobalDeclaration>> TurnTokensIntoAbstractSyntaxTree(std::vector<Token>& tokens, std::ofstream* log);
}