chore: clean up imports

This commit is contained in:
2024-11-09 13:57:52 +01:00
parent 73065fc808
commit 8ce07f4ea4

View File

@@ -1,10 +1,5 @@
use super::{expression::Expression, prelude::mk_prelude}; use super::{expression::Expression, prelude::mk_prelude};
use std::{ use std::{cell::RefCell, collections::HashMap, rc::Rc};
borrow::BorrowMut,
cell::{RefCell, RefMut},
collections::HashMap,
rc::Rc,
};
#[derive(PartialEq, Clone, Debug)] #[derive(PartialEq, Clone, Debug)]
/// A Environment is a stack of `EnvironmentLayer`s. Each `EnvironmentLayer` is a mapping from /// A Environment is a stack of `EnvironmentLayer`s. Each `EnvironmentLayer` is a mapping from