We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently erlang files export the full path as it was available on the developer machine that ran gleam publish.
-file("/Users/USERNAME/SOME/PATH/some_lib_or_app/src/some_lib_or_app.gleam", 26). -spec my_fun(boolean(), fun(() -> FVC), fun(() -> FVC)) -> FVC. my_fun(Var1, Var2, Var3) -> % ...
-file("some_lib_or_app/src/some_lib_or_app.gleam", 26). -spec my_fun(boolean(), fun(() -> FVC), fun(() -> FVC)) -> FVC. my_fun(Var1, Var2, Var3) -> % ...
The text was updated successfully, but these errors were encountered:
I agree, thank you.
Sorry, something went wrong.
Fixes gleam-lang#4141
58bfb96
Fixes hex packages should not leak absolute path in .erl -file
f60d856
"directives" bug gleam-lang#4141
No branches or pull requests
Currently erlang files export the full path as it was available on the developer machine that ran gleam publish.
Current implementation
Expected implementation
The text was updated successfully, but these errors were encountered: