blob: 6b9d5bab4e05e6eb93b5a426b7a8b228bd2428ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* MRustC - Rust Compiler
* - By John Hodge (Mutabah/thePowersGang)
*
* hir_expand/main_bindings.hpp
* - Functions defined in this folder that are called by main
*/
#pragma once
namespace HIR {
class Crate;
};
extern void HIR_Expand_AnnotateUsage(::HIR::Crate& crate);
extern void HIR_Expand_VTables(::HIR::Crate& crate);
extern void HIR_Expand_Closures(::HIR::Crate& crate);
extern void HIR_Expand_UfcsEverything(::HIR::Crate& crate);
extern void HIR_Expand_Reborrows(::HIR::Crate& crate);
extern void HIR_Expand_ErasedType(::HIR::Crate& crate);
extern void ConvertHIR_ConstantEvaluateFull(::HIR::Crate& crate);
|