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 4, 2024
1 parent 03abe58 commit 686c198
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 @@ -848,7 +848,7 @@ impl Backend for TurboTasksBackend {
_: TaskId,
_: &dyn TurboTasksBackendApi<Self>,
) -> AutoMap<RawVc, i32, BuildHasherDefault<FxHasher>, 1> {
todo!()
Default::default()
}

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

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

fn update_task_cell(
Expand Down Expand Up @@ -916,7 +916,8 @@ impl Backend for TurboTasksBackend {
turbo_tasks.schedule(task_id);
task_id
}

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

0 comments on commit 686c198

Please sign in to comment.