Skip to content

Commit

Permalink
[compiler] Clean up deadcode: DeriveMinimalDeps (non-hir fork)
Browse files Browse the repository at this point in the history
Summary:

Test Plan:

Reviewers:

Subscribers:

Tasks:

Tags:
  • Loading branch information
mofeiZ committed Jan 16, 2025
1 parent 3f7b9aa commit 7acb5e0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 641 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
ReactiveScopeDependency,
} from '../HIR';
import {printIdentifier} from '../HIR/PrintHIR';
import {ReactiveScopePropertyDependency} from '../ReactiveScopes/DeriveMinimalDependencies';

/**
* Simpler fork of DeriveMinimalDependencies, see PropagateScopeDependenciesHIR
Expand Down Expand Up @@ -91,7 +90,7 @@ export class ReactiveScopeDependencyTreeHIR {
* dependency. This effectively truncates @param dep to its maximal
* safe-to-evaluate subpath
*/
addDependency(dep: ReactiveScopePropertyDependency): void {
addDependency(dep: ReactiveScopeDependency): void {
const {identifier, path} = dep;
let depCursor = ReactiveScopeDependencyTreeHIR.#getOrCreateRoot(
identifier,
Expand Down
Loading

0 comments on commit 7acb5e0

Please sign in to comment.