tamer: asg::graph::{object::xir=>xmli}: Rename module

This better reflects what is being done and makes it easier for someone to
find.

DEV-13708
main
Mike Gerwitz 2023-02-22 23:16:53 -05:00
parent 82915f11af
commit ee9128fbe0
4 changed files with 7 additions and 4 deletions

View File

@ -45,6 +45,7 @@ use std::{fmt::Debug, result::Result};
pub mod object;
pub mod visit;
pub mod xmli;
use object::{ObjectContainer, ObjectRelTo};

View File

@ -122,7 +122,6 @@ pub mod ident;
pub mod pkg;
mod rel;
pub mod root;
pub mod xir;
pub use expr::Expr;
pub use ident::Ident;

View File

@ -29,7 +29,9 @@
//! but may be useful in the future for concrete code suggestions/fixes,
//! or observing template expansions.
use super::{DynObjectRel, Expr, Object, ObjectIndex, ObjectRelTy, Pkg};
use super::object::{
DynObjectRel, Expr, Object, ObjectIndex, ObjectRelTy, Pkg,
};
use crate::{
asg::{
visit::{Depth, TreeWalkRel},

View File

@ -76,10 +76,11 @@ pub use graph::{
FragmentText, Ident, IdentKind, Source, TransitionError,
TransitionResult, UnresolvedError,
},
xir::AsgTreeToXirf,
Object, ObjectIndex, ObjectKind,
},
visit, Asg, AsgResult, IndexType,
visit,
xmli::AsgTreeToXirf,
Asg, AsgResult, IndexType,
};
/// Default concrete ASG implementation.