Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bufferhe4d committed Nov 24, 2024
1 parent b243dce commit a2d31f7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/type_checker/checker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ use crate::{
imports::FnKind,
parser::{
types::{
is_numeric, ModulePath, FnSig, ForLoopArgument, FunctionDef, Stmt, StmtKind, Symbolic, Ty, TyKind,
is_numeric, FnSig, ForLoopArgument, FunctionDef, ModulePath, Stmt, StmtKind, Symbolic,
Ty, TyKind,
},
CustomType, Expr, ExprKind, Op2,
},
syntax::is_type,
stdlib::builtins::QUALIFIED_BUILTINS,
syntax::is_type,
};

use super::{FullyQualified, TypeChecker, TypeInfo, TypedFnEnv};
Expand Down Expand Up @@ -842,7 +843,7 @@ impl<B: Backend> TypeChecker<B> {
&fn_sig.name.value,
))
.map(|info| &info.kind)
{
{
// check builtin
Some(FnKind::BuiltIn(_, _, ignore)) => *ignore,
_ => false,
Expand Down

0 comments on commit a2d31f7

Please sign in to comment.