Skip to content

Commit

Permalink
[compiler] transform fire calls
Browse files Browse the repository at this point in the history
This is the diff with the meaningful changes. The approach is:
1. Collect fire callees and remove fire() calls, create a new binding for the useFire result
2. Update LoadLocals for captured callees to point to the useFire result
3. Update function context to reference useFire results
4. Insert useFire calls after getting to the component scope

This approach aims to minimize the amount of new bindings we introduce for the function expressions
to minimize bookkeeping for dependency arrays. We keep all of the LoadLocals leading up to function
calls as they are and insert new instructions to load the originally captured function, call useFire,
and store the result in a new promoted temporary. The lvalues that referenced the original callee are
changed to point to the new useFire result.

This is the minimal diff to implement the expected behavior (up to importing the useFire call, next diff)
and further stacked diffs implement error handling. The rules for fire are:
1. If you use fire for a callee in the effect once you must use it for every time you call it in that effect
2. You can only use fire in a useEffect lambda/functions defined inside the useEffect lambda

There is still more work to do here, like updating the effect dependency array and handling object methods

--
  • Loading branch information
jbrown215 committed Dec 16, 2024
1 parent e8faeb4 commit d2a109c
Show file tree
Hide file tree
Showing 23 changed files with 1,309 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ import {validateNoJSXInTryStatement} from '../Validation/ValidateNoJSXInTryState
import {propagateScopeDependenciesHIR} from '../HIR/PropagateScopeDependenciesHIR';
import {outlineJSX} from '../Optimization/OutlineJsx';
import {optimizePropsMethodCalls} from '../Optimization/OptimizePropsMethodCalls';
import {transformFire} from '../Transform';

export type CompilerPipelineValue =
| {kind: 'ast'; name: string; value: CodegenFunction}
Expand Down Expand Up @@ -198,6 +199,11 @@ function* runWithEnvironment(
inferTypes(hir);
yield log({kind: 'hir', name: 'InferTypes', value: hir});

if (env.config.enableFire) {
transformFire(hir);
yield log({kind: 'hir', name: 'TransformFire', value: hir});
}

if (env.config.validateHooksUsage) {
validateHooksUsage(hir);
}
Expand Down
Loading

0 comments on commit d2a109c

Please sign in to comment.