mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 01:49:05 +00:00
22 lines
326 B
C++
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);
|
|
}
|