Moving modules around

This commit is contained in:
Greg Shuflin 2021-10-14 06:30:55 -07:00
parent 3ed5f1d16c
commit ec55e2e8f0
3 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,6 @@ mod scope_resolution;
mod builtin; mod builtin;
mod reduced_ast; mod reduced_ast;
mod eval; mod eval;
mod source_map;
mod error; mod error;
mod schala; mod schala;

View File

@ -5,7 +5,6 @@ use std::fmt;
use std::fmt::Write; use std::fmt::Write;
use crate::tokenizing::LineNumber; use crate::tokenizing::LineNumber;
use crate::source_map::SourceMap;
use crate::ast; use crate::ast;
use crate::ast::{ItemId, TypeBody, TypeSingletonName, Signature, Statement, StatementKind, ModuleSpecifier}; use crate::ast::{ItemId, TypeBody, TypeSingletonName, Signature, Statement, StatementKind, ModuleSpecifier};
use crate::typechecking::TypeName; use crate::typechecking::TypeName;
@ -24,6 +23,8 @@ macro_rules! fqsn {
}; };
} }
mod source_map;
use source_map::SourceMap;
mod symbol_trie; mod symbol_trie;
use symbol_trie::SymbolTrie; use symbol_trie::SymbolTrie;
mod test; mod test;