TACIXAT / WASMFile

Utilities for inspecting wasm files
2 stars 0 forks source link

Add option to disable expression parsing #2

Open TACIXAT opened 5 years ago

TACIXAT commented 5 years ago

This will allow people to still use the utility on the rest of the file when unsupported opcodes are around.

TACIXAT commented 5 years ago

This sounds like a pain in the ass to propagate down. Better to just add instructions as we run into problems.

parser.add_argument('--no-expressions', action='store_true', help='do not parse expressions (diassembly)', default=False)