clippy --fix fixes

This commit is contained in:
Folkert 2023-04-21 12:05:51 +02:00
parent 9973d4b8d2
commit 4cd8f0a056
57 changed files with 366 additions and 374 deletions

View file

@ -13,8 +13,8 @@ use crate::{
slow_pool::{MarkNodeId, SlowPool},
};
pub fn ast_to_mark_nodes<'a>(
env: &mut Env<'a>,
pub fn ast_to_mark_nodes(
env: &mut Env<'_>,
ast: &AST,
mark_node_pool: &mut SlowPool,
interns: &Interns,

View file

@ -35,8 +35,8 @@ pub fn add_node(
mark_node_id
}
pub fn def2_to_markup<'a>(
env: &mut Env<'a>,
pub fn def2_to_markup(
env: &mut Env<'_>,
def2: &Def2,
def2_node_id: DefId,
mark_node_pool: &mut SlowPool,

View file

@ -35,8 +35,8 @@ use roc_module::{module_err::ModuleResult, symbol::Interns};
use super::from_def2::add_node;
// make Markup Nodes: generate String representation, assign Highlighting Style
pub fn expr2_to_markup<'a>(
env: &Env<'a>,
pub fn expr2_to_markup(
env: &Env<'_>,
expr2: &Expr2,
expr2_node_id: ExprId,
mark_node_pool: &mut SlowPool,

View file

@ -258,7 +258,7 @@ pub fn make_nested_mn(children_ids: Vec<MarkNodeId>, newlines_at_end: usize) ->
}
}
pub fn get_string<'a>(env: &Env<'a>, pool_str: &PoolStr) -> String {
pub fn get_string(env: &Env<'_>, pool_str: &PoolStr) -> String {
pool_str.as_str(env.pool).to_owned()
}

View file

@ -19,13 +19,13 @@ use super::{
};
// represents for example: `main = "Hello, World!"`
pub fn assignment_mark_node<'a>(
pub fn assignment_mark_node(
identifier_id: IdentId,
expr_mark_node_id: MarkNodeId,
ast_node_id: ASTNodeId,
mark_node_pool: &mut SlowPool,
mark_id_ast_id_map: &mut MarkIdAstIdMap,
env: &Env<'a>,
env: &Env<'_>,
) -> ASTResult<MarkupNode> {
let val_name = env.ident_ids.get_name_str_res(identifier_id)?;