You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Massa javascript source files, we are using @flow syntax to use Flow to check the static types, but we are not really using any of its possibilities (the only real use is in the SampleText.js file).
We either should use the Flow static type checking or (I don't recommend this way) delete the @flow comments.
Flow is a really good static type checker, why don't we use it to avoid all the bugs that we can possibly make?
The text was updated successfully, but these errors were encountered:
In the
Massa
javascript source files, we are using@flow
syntax to use Flow to check the static types, but we are not really using any of its possibilities (the only real use is in theSampleText.js
file).We either should use the Flow static type checking or (I don't recommend this way) delete the
@flow
comments.Flow is a really good static type checker, why don't we use it to avoid all the bugs that we can possibly make?
The text was updated successfully, but these errors were encountered: