Cleanup: Break Loc out into a common module, rename WhileParsing => Parsing

This commit is contained in:
2024-01-23 01:51:00 -06:00
parent c4a32895df
commit b8d70d3393
8 changed files with 182 additions and 180 deletions

View File

@@ -1043,7 +1043,7 @@ pub mod error {
//! The [Error] type represents any error thrown by the [Environment](super::Environment)
use super::temp_type_impl::ConValue;
use crate::ast::Loc;
use crate::common::Loc;
pub type IResult<T> = Result<T, Error>;