13 lines
313 B
C
13 lines
313 B
C
|
#pragma once
|
||
|
#include "Token.h"
|
||
|
#include "Lexer.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);
|
||
|
}
|