conlang: More clippy

This commit is contained in:
2025-09-15 00:17:50 -04:00
parent 1fe796dda7
commit 62940b3d24
5 changed files with 8 additions and 8 deletions

View File

@@ -159,7 +159,7 @@ impl Environment {
/// Enters a nested scope, returning a [`Frame`] stack-guard.
///
/// [`Frame`] implements Deref/DerefMut for [`Environment`].
pub fn frame(&mut self, name: &'static str) -> Frame {
pub fn frame(&mut self, name: &'static str) -> Frame<'_> {
Frame::new(self, name)
}

View File

@@ -33,7 +33,7 @@ impl Function {
pub fn decl(&self) -> &FnDecl {
&self.decl
}
pub fn upvars(&self) -> Ref<Upvars> {
pub fn upvars(&self) -> Ref<'_, Upvars> {
self.upvars.borrow()
}
pub fn lift_upvars(&self, env: &Environment) {

View File

@@ -328,7 +328,7 @@ pub mod collector {
self.env.modules().get(self.module)
}
pub fn as_node_mut(&mut self) -> ModuleNodeMut {
pub fn as_node_mut(&mut self) -> ModuleNodeMut<'_> {
self.env.modules_mut().get_mut(self.module)
}