mirror of
https://github.com/facebook/react.git
synced 2026-02-26 02:54:59 +00:00
[compiler] Fix Pipeline.ts early-exit, formatting, and style issues
Fix the transformFire early-exit in Pipeline.ts to only trigger on new errors from transformFire itself, not pre-existing errors from earlier passes. The previous `env.hasErrors()` check was too broad — it would early-exit on validation errors that existed before transformFire ran. Also add missing blank line in CodegenReactiveFunction.ts Context class, and fix formatting in ValidateMemoizedEffectDependencies.ts.
This commit is contained in:
@@ -442,6 +442,7 @@ class Context {
|
||||
recordError(error: CompilerErrorDetail): void {
|
||||
this.env.recordError(error);
|
||||
}
|
||||
|
||||
get nextCacheIndex(): number {
|
||||
return this.#nextCacheIndex++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user