HomePhabricator
Diffusion Comm 0c7a1b8bc5c3

[Flow202][lib][skip-ci] [14/23] Fix Flow issues with types of variables that…

Description

[Flow202][lib][skip-ci] [14/23] Fix Flow issues with types of variables that get mutated

Summary:
There are two main categories of changes here, and both pertain to variables getting mutated:

  1. let declarations where the variable is reassigned later
  2. const declarations of mutable collections that are mutated later

In both of these cases, Flow now wants us to annotate the declaration to cover both the type of the data that's initialized, and also the mutations that later occur.

NOTE: CI will fail on this diff. I considered the possibility of fixing Flow errors BEFORE upgrading Flow, but it wasn't possible... in some cases, the fixes to support the new version of Flow caused errors in the old version. I could have hidden these type errors with $FlowFixMe lines and then later revert those, but that seemed like too much busy work.

Depends on D9705

Test Plan: Confirm the Flow errors go away

Reviewers: tomek, bartek, atul

Reviewed By: atul

Subscribers: wyilio

Differential Revision: https://phab.comm.dev/D9706