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
Compiling with OTP 24 I got the stacktrace below. A quick look into the issue and I found the AST for EOF was not {EOL, Line} as mixer expected, but {EOL, {Line, Column}}.
Describe the problem
Compiling with OTP 24 I got the stacktrace below. A quick look into the issue and I found the AST for EOF was not {EOL, Line} as mixer expected, but {EOL, {Line, Column}}.
See https://erlang.org/doc/apps/erts/absform.html#representation-of-parse-errors-and-end-of-file for a description of {EOL, {Line, Column}} and https://erlang.org/doc/man/erl_anno.html#type-location for more detail.
Software Version
Windows, OTP 24, rebar3.
Replication Case
Just run
rebar3 eunit
on mixer itself.Stacktrace
Possible Solution
The following code (inside NEW below) resolves the issue
The text was updated successfully, but these errors were encountered: