[compiler] Deduplicate errors between ValidateExhaustiveDependencies and ValidatePreservedManualMemoization (#35917)
With the recent changes to make the compiler fault tolerant and always continue through all passes, we can now sometimes report duplicative errors. Specifically, when `ValidateExhaustiveDependencies` finds incorrect deps for a useMemo/useCallback call, `ValidatePreservedManualMemoization` will generally also error for the same block, producing duplicate errors. The exhaustive deps error is strictly more informative, so if we've already reported the earlier error we don't need the later one. This adds a `hasInvalidDeps` flag to StartMemoize that is set when ValidateExhaustiveDependencies produces a diagnostic. ValidatePreservedManualMemoization then skips validation for memo blocks with this flag set. DiffTrain build for [6b113b7bd11f7fa432a0a8f9375013d30c884494](https://github.com/facebook/react/commit/6b113b7bd11f7fa432a0a8f9375013d30c884494)
J
josephsavona committed
aaa276b307b29b09bc1494808104a06c67278c30
Parent: ba27039