Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Oct 28, 2024
1 parent 3f878a7 commit 192dded
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/symbols/analyzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ use deno_ast::SourceTextInfo;
use indexmap::IndexMap;
use indexmap::IndexSet;

use crate::EsParser;
use crate::JsModule;
use crate::JsonModule;
use crate::ModuleGraph;
use crate::EsParser;
use crate::ParseOptions;

use super::collections::AdditiveOnlyIndexMap;
Expand Down Expand Up @@ -49,10 +49,7 @@ pub struct RootSymbol<'a> {
}

impl<'a> RootSymbol<'a> {
pub fn new(
module_graph: &'a ModuleGraph,
parser: &'a dyn EsParser,
) -> Self {
pub fn new(module_graph: &'a ModuleGraph, parser: &'a dyn EsParser) -> Self {
Self {
module_graph,
parser,
Expand Down

0 comments on commit 192dded

Please sign in to comment.