Skip to content

Commit

Permalink
WIP: remove todos
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Sep 25, 2024
1 parent ea98234 commit 97d14f6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions turbopack/crates/turbo-tasks-backend/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1403,7 +1403,7 @@ impl Backend for TurboTasksBackend {
_: TaskId,
_: &dyn TurboTasksBackendApi<Self>,
) -> AutoMap<RawVc, i32, BuildHasherDefault<FxHasher>, 1> {
todo!()
Default::default()
}

fn emit_collectible(
Expand All @@ -1413,7 +1413,7 @@ impl Backend for TurboTasksBackend {
_: TaskId,
_: &dyn TurboTasksBackendApi<Self>,
) {
todo!()
// todo!("emit_collectible");
}

fn unemit_collectible(
Expand All @@ -1424,7 +1424,7 @@ impl Backend for TurboTasksBackend {
_: TaskId,
_: &dyn TurboTasksBackendApi<Self>,
) {
todo!()
// todo!("emit_collectible");
}

fn update_task_cell(
Expand Down Expand Up @@ -1453,7 +1453,8 @@ impl Backend for TurboTasksBackend {
) -> TaskId {
self.0.create_transient_task(task_type)
}

fn dispose_root_task(&self, _: TaskId, _: &dyn TurboTasksBackendApi<Self>) {
todo!()
// todo!("dispose_root_task");
}
}

0 comments on commit 97d14f6

Please sign in to comment.