clippy and comments

comments and clippy
This commit is contained in:
faldor20 2024-03-17 18:16:39 +10:00
parent 089c499fc6
commit 56481dc724
No known key found for this signature in database
GPG key ID: F2216079B890CD57
5 changed files with 39 additions and 38 deletions

View file

@ -1,20 +1,20 @@
use roc_can::expr::{
AnnotatedMark, ClosureData, Expr, Field, Recursive, WhenBranch, WhenBranchPattern,
Expr, Field,
};
use roc_can::pattern::Pattern;
use roc_collections::SendMap;
use roc_module::called_via::CalledVia;
use roc_module::ident::Lowercase;
use roc_module::symbol::Symbol;
use roc_region::all::{Loc, Region};
use roc_types::subs::{
Content, ExhaustiveMark, FlatType, LambdaSet, OptVariable, RecordFields, RedundantMark,
SubsSlice, TagExt, UnionLambdas, UnionTags, Variable,
Content, FlatType, RecordFields,
SubsSlice, TagExt, UnionTags, Variable,
};
use roc_types::types::RecordField;
use crate::synth_var;
use crate::util::{empty_list, ok_to_ok_branch, Env, ExtensionKind};
use crate::util::{Env, ExtensionKind};
use self::finalizer::finalizer;
use self::stepField::step_field;