From 7856424ad5f72a81749a4138a12fe869236acca3 Mon Sep 17 00:00:00 2001 From: Lawrence Bethlenfalvy Date: Thu, 2 Jun 2022 05:56:33 +0200 Subject: [PATCH] updated Xes --- src/project/resolve_names.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/project/resolve_names.rs b/src/project/resolve_names.rs index a0cf94d..094ccbe 100644 --- a/src/project/resolve_names.rs +++ b/src/project/resolve_names.rs @@ -41,10 +41,10 @@ impl ParseError { } // Loading a module: -// 1. [X] Parse the imports -// 2. [ ] Build a mapping of all imported symbols to full paths -// -> [X] Parse the exported symbols from all imported modules -// 3. [ ] Parse everything using the full list of operators +// 1. [x] Parse the imports +// 2. [x] Build a mapping of all imported symbols to full paths +// -> [x] Parse the exported symbols from all imported modules +// 3. [x] Parse everything using the full list of operators // 4. [ ] Traverse and remap elements type GetLoaded<'a> = dyn FnMut(&'a [&str]) -> &'a Option;