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
The typer currently and _incorrectly reports a missing member a on line 3:
{error, {missing_record_field, mod, 3, a}}
I believe this is because even though it's correctly finding the lower bound (a record with a and b members), the environment doesn't track the source (line) of the initial type, {b: bool} and thus can't accurately report the true problem location.
The text was updated successfully, but these errors were encountered:
j14159
added a commit
to j14159/alpaca
that referenced
this issue
Dec 3, 2018
Some line number reports are still incorrect but at least point to the
correct function now. Please see the following issue for more detail:
alpaca-lang#263
The typer currently and _incorrectly reports a missing member
a
on line 3:I believe this is because even though it's correctly finding the lower bound (a record with
a
andb
members), the environment doesn't track the source (line) of the initial type,{b: bool}
and thus can't accurately report the true problem location.The text was updated successfully, but these errors were encountered: