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
To make it more resilient we can fallback to guessing the module via
:code.all_loaded() |> Enum.filter(fn {atom, _} -> String.starts_with?(Atom.to_string(atom), "Elixir.") end) |> Enum.group_by(fn {module, path} -> Path.expand(to_string(module.module_info(:compile)[:source])) end, fn {module, _path} -> module end)
Worst case it will return a list of modules and we may set breakpoints in every one of them
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
To make it more resilient we can fallback to guessing the module via
Worst case it will return a list of modules and we may set breakpoints in every one of them
The text was updated successfully, but these errors were encountered: