Page MenuHomePhabricator

[Flow202][web][skip-ci] [8/x] Fix Flow issues with types of variables that get mutated
ClosedPublic

Authored by ashoat on Nov 8 2023, 11:36 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 7, 8:18 AM
Unknown Object (File)
Wed, May 1, 5:30 AM
Unknown Object (File)
Tue, Apr 30, 8:28 PM
Unknown Object (File)
Sun, Apr 28, 4:39 PM
Unknown Object (File)
Sun, Apr 28, 3:33 PM
Unknown Object (File)
Fri, Apr 26, 8:59 AM
Unknown Object (File)
Fri, Apr 26, 7:10 AM
Unknown Object (File)
Tue, Apr 16, 6:00 PM
Subscribers

Details

Summary

This the web counterpart of both D9706 and D9692 (I combined them for web).

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 D9773

Test Plan

Confirm the Flow errors go away

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Nov 8 2023, 11:50 AM
Harbormaster failed remote builds in B23922: Diff 32960!
This revision is now accepted and ready to land.Nov 9 2023, 11:44 AM

Rebase and fix a new error

ashoat retitled this revision from [Flow202][web] [8/x] Fix Flow issues with types of variables that get mutated to [Flow202][web][skip-ci] [8/x] Fix Flow issues with types of variables that get mutated.Nov 19 2023, 5:02 PM