File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
crates/rolldown/src/module_loader Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,7 @@ impl ModuleTask {
110110 let mut sourcemap_chain = vec ! [ ] ;
111111 let mut hook_side_effects = self . resolved_id . side_effects . take ( ) ;
112112 let ( mut source, module_type) = self
113- . load_source_without_cache (
114- & mut sourcemap_chain,
115- & mut hook_side_effects,
116- self . magic_string_tx . clone ( ) ,
117- )
113+ . load_source ( & mut sourcemap_chain, & mut hook_side_effects, self . magic_string_tx . clone ( ) )
118114 . await ?;
119115
120116 let stable_id = id. stabilize ( & self . ctx . options . cwd ) ;
@@ -235,7 +231,7 @@ impl ModuleTask {
235231 }
236232
237233 #[ tracing:: instrument( level = "debug" , skip_all) ]
238- async fn load_source_without_cache (
234+ async fn load_source (
239235 & self ,
240236 sourcemap_chain : & mut Vec < SourcemapChainElement > ,
241237 hook_side_effects : & mut Option < rolldown_common:: side_effects:: HookSideEffects > ,
You can’t perform that action at this time.
0 commit comments