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
While reading the code, I noticed that shouldContinue is initialized to false and never gets set to true. I didn't do any verification beyond code inspection.
We have a while loop with "shouldContinue" to emulate a break; since Reason doesn't have break. Normally you would not write idiomatic Reason code in this manner, but since we are transcribing from C, we wanted to make sure the algorithm was as close as possible. It would be fun to clean this up over time to turn it into a more idiomatic style with fewer mutations.
While reading the code, I noticed that
shouldContinue
is initialized tofalse
and never gets set totrue
. I didn't do any verification beyond code inspection.flex/src/lib/Layout.re
Lines 1438 to 1458 in fd0257e
The text was updated successfully, but these errors were encountered: