Skip to content

Commit

Permalink
Update (base update)
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
mofeiZ committed Sep 25, 2024
1 parent 5b19dc0 commit b27edfb
Show file tree
Hide file tree
Showing 75 changed files with 4,158 additions and 653 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ function* runWithEnvironment(
});
assertTerminalSuccessorsExist(hir);
assertTerminalPredsExist(hir);
if (env.config.enablePropagateDepsInHIR) {
if (env.config.enablePropagateDepsInHIR !== 'disabled') {
propagateScopeDependenciesHIR(hir);
yield log({
kind: 'hir',
Expand Down Expand Up @@ -378,7 +378,7 @@ function* runWithEnvironment(
});
assertScopeInstructionsWithinScopes(reactiveFunction);

if (!env.config.enablePropagateDepsInHIR) {
if (env.config.enablePropagateDepsInHIR === 'disabled') {
propagateScopeDependencies(reactiveFunction);
yield log({
kind: 'reactive',
Expand Down
Loading

0 comments on commit b27edfb

Please sign in to comment.