summaryrefslogtreecommitdiff
path: root/src/resolve/main_bindings.hpp
blob: f843a99e9007f67757aad07013e1edf0d7b97b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * MRustC - Mutabah's Rust Compiler
 * - By John Hodge (Mutabah/thePowersGang)
 *
 * resolve/main_bindings.hpp
 * - Functions in the resolve pass called by main
 */
#pragma once

namespace AST {
    class Crate;
};

extern void Resolve_Use(::AST::Crate& crate);
extern void Resolve_Index(::AST::Crate& crate);
extern void Resolve_Absolutise(::AST::Crate& crate);