Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
eandre committed Nov 14, 2024
1 parent 899c0d1 commit 6016a04
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tsparser/src/parser/types/object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,8 @@ impl NSData {
}

Reexport::All { import_path } => {
if let Some(module) = ctx.resolve_module_import(&curr_module, import_path) {
if let Some(export) =
module.data.get_named_export(ctx, &curr_module, needle)
if let Some(module) = ctx.resolve_module_import(curr_module, import_path) {
if let Some(export) = module.data.get_named_export(ctx, curr_module, needle)
{
return Some(export);
}
Expand Down

0 comments on commit 6016a04

Please sign in to comment.