blob: b8391cb820c95e78d1eb27b6c95d96d1f24c5a94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* MRustC - Rust Compiler
* - By John Hodge (Mutabah/thePowersGang)
*
* trans/main_bindings.hpp
* - Trans functions called by main()
*/
#pragma once
#include "trans_list.hpp"
namespace HIR {
class Crate;
}
extern TransList Trans_Enumerate_Main(const ::HIR::Crate& crate);
extern TransList Trans_Enumerate_Public(const ::HIR::Crate& crate);
extern void Trans_Codegen(const ::std::string& outfile, const ::HIR::Crate& crate, const TransList& list);
|