summaryrefslogtreecommitdiff
path: root/src/resolve/absolute.cpp
blob: dd0c5f0d7a05e2b380cc24a02af504ab2d105491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Convert all paths in AST into absolute form (or to the relevant local item)
 *
 * After complete there should be no:
 * - Relative/super/self paths
 * - MaybeBind patterns
 */
#include <ast/crate.hpp>
#include <main_bindings.hpp>

void Resolve_Absolutise(AST::Crate& crate)
{
    TODO(Span(), "Run 'absolutise' resolve pass");
}