13 lines
315 B
C++
13 lines
315 B
C++
#pragma once
|
|
#include "Lexer.h"
|
|
#include "Token.h"
|
|
|
|
namespace Importer
|
|
{
|
|
extern int import_count;
|
|
extern std::vector<std::shared_ptr<Location>> import_stack;
|
|
extern std::vector<std::string> imported_files;
|
|
TokenStream evaluate(const TokenStream& original);
|
|
void init(std::string init_file);
|
|
} // namespace Importer
|