updated Xes

This commit is contained in:
2022-06-02 05:56:33 +02:00
parent 6ddbda8cd5
commit 7856424ad5

View File

@@ -41,10 +41,10 @@ impl ParseError {
} }
// Loading a module: // Loading a module:
// 1. [X] Parse the imports // 1. [x] Parse the imports
// 2. [ ] Build a mapping of all imported symbols to full paths // 2. [x] Build a mapping of all imported symbols to full paths
// -> [X] Parse the exported symbols from all imported modules // -> [x] Parse the exported symbols from all imported modules
// 3. [ ] Parse everything using the full list of operators // 3. [x] Parse everything using the full list of operators
// 4. [ ] Traverse and remap elements // 4. [ ] Traverse and remap elements
type GetLoaded<'a> = dyn FnMut(&'a [&str]) -> &'a Option<Loaded>; type GetLoaded<'a> = dyn FnMut(&'a [&str]) -> &'a Option<Loaded>;