Refactor: Move utils to separate module

Moves `PathTracker` and `UsageInfo` to the `utils` module to improve
code organization.
This commit is contained in:
Michael Schimmel
2026-02-25 20:35:12 +01:00
parent cad0c03973
commit 04f2203900
5 changed files with 179 additions and 175 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ use std::cell::RefCell;
use std::collections::{HashMap, HashSet};
use std::rc::Rc;
use super::substitution_map::{SubstitutionMap, UsageInfo};
use super::utils::flatten_tuple;
use super::substitution_map::SubstitutionMap;
use super::utils::{flatten_tuple, UsageInfo};
pub struct Inliner<'a> {
pub globals: &'a Option<Rc<RefCell<Vec<Value>>>>,