Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
Signed-off-by: shruti2522 <shruti.apc01@gmail.com>
  • Loading branch information
shruti2522 committed Jul 5, 2024
1 parent 66bf9cc commit 0173e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kclvm/sema/src/advanced_resolver/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -582,13 +582,13 @@ impl<'ctx> MutSelfTypedResultWalker<'ctx> for AdvancedResolver<'ctx> {
.unwrap()
.clone();
if let TypeKind::Function(func_ty) = &ty.kind {
func_params.extend(&func_ty.params)
func_params.extend(&func_ty.params)
}
self.do_arguments_symbol_resolve_with_hint(
&call_expr.args,
&call_expr.keywords,
true,
func_params
func_params,
)?;
Ok(None)
}
Expand Down

0 comments on commit 0173e80

Please sign in to comment.