Skip to content

Commit

Permalink
turbopack-ecmascript: ResolvedVc<T>
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 28, 2024
1 parent f423de5 commit 9a78c81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions turbopack/crates/turbopack-ecmascript/src/webpack/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl Asset for WebpackModuleAsset {
pub struct WebpackChunkAssetReference {
#[turbo_tasks(trace_ignore)]
pub chunk_id: Lit,
pub runtime: Vc<WebpackRuntime>,
pub runtime: ResolvedVc<WebpackRuntime>,
pub transforms: ResolvedVc<EcmascriptInputTransforms>,
}

Expand Down Expand Up @@ -128,7 +128,7 @@ impl ValueToString for WebpackChunkAssetReference {
#[turbo_tasks::value(shared)]
pub struct WebpackEntryAssetReference {
pub source: ResolvedVc<Box<dyn Source>>,
pub runtime: Vc<WebpackRuntime>,
pub runtime: ResolvedVc<WebpackRuntime>,
pub transforms: ResolvedVc<EcmascriptInputTransforms>,
}

Expand Down Expand Up @@ -156,8 +156,8 @@ impl ValueToString for WebpackEntryAssetReference {
#[turbo_tasks::value(shared)]
pub struct WebpackRuntimeAssetReference {
pub origin: ResolvedVc<Box<dyn ResolveOrigin>>,
pub request: Vc<Request>,
pub runtime: Vc<WebpackRuntime>,
pub request: ResolvedVc<Request>,
pub runtime: ResolvedVc<WebpackRuntime>,
pub transforms: ResolvedVc<EcmascriptInputTransforms>,
}

Expand Down

0 comments on commit 9a78c81

Please sign in to comment.