1
1
mirror of https://github.com/oxalica/nil.git synced 2024-11-22 19:49:20 +03:00

Rename mod

This commit is contained in:
oxalica 2022-08-18 00:38:40 +08:00
parent 709b5ea3c3
commit c91cf603e6
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
mod liveness;
mod lower;
mod nameres;
mod path;
mod scope;
#[cfg(test)]
mod tests;
@ -17,10 +17,10 @@ use std::sync::Arc;
use syntax::Parse;
pub use self::liveness::LivenessCheckResult;
pub use self::path::{Path, PathAnchor, PathData};
pub use self::scope::{
pub use self::nameres::{
ModuleScopes, NameReference, NameResolution, ResolveResult, ScopeData, ScopeId,
};
pub use self::path::{Path, PathAnchor, PathData};
pub use syntax::ast::{BinaryOpKind as BinaryOp, UnaryOpKind as UnaryOp};
#[salsa::query_group(DefDatabaseStorage)]