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
beamdasm.disassemble
OTP versions tried: 24.3.3, 25.0 Elixir versions tried: 1.13, 1.14
Operating systems tried: Windows 10, Ubuntu 20.04, MacOS
Expected behavior:
Actual behavior:
Steps to reproduce: For erlang files:
test1.erl
-module(test1). -export([foo/0]). foo() -> 42.
erlc test1.erl
test1.beam
For elixir files:
test1.ex
defmodule Test1 do def foo, do: 42 end
elixirc test1.ex
Elixir.Test1.beam
The text was updated successfully, but these errors were encountered:
I just rebuilt the vsix file and published it, with no changes other than bumping the engine version which wasn't even required, and it now works
I published the fork here https://marketplace.visualstudio.com/items?itemName=Dorgandash.beamdasm-fork as a temporary workaround I'll gladly remove the fork from the marketplace once the original is fixed
Sorry, something went wrong.
Thank you for reporting. I will update this weekend. Please remove the fork
No branches or pull requests
OTP versions tried: 24.3.3, 25.0
Elixir versions tried: 1.13, 1.14
Operating systems tried: Windows 10, Ubuntu 20.04, MacOS
Expected behavior:
Actual behavior:
Steps to reproduce:
For erlang files:
test1.erl
:erlc test1.erl
test1.beam
file and click "Disassemble BEAM"For elixir files:
test1.ex
:elixirc test1.ex
Elixir.Test1.beam
file and click "Disassemble BEAM"The text was updated successfully, but these errors were encountered: