diff options
Diffstat (limited to 'src/resolve/absolute.cpp')
-rw-r--r-- | src/resolve/absolute.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/resolve/absolute.cpp b/src/resolve/absolute.cpp new file mode 100644 index 00000000..dd0c5f0d --- /dev/null +++ b/src/resolve/absolute.cpp @@ -0,0 +1,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"); +} + + |