This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A look-up dictionary for WASM opcodes. | |
* Will return a (frozen) array with the | |
* bytecode sequence for a WASM opcode | |
* name. | |
* | |
* Can be accessed with property access | |
* or by using the whole opcode name as | |
* a key, e.g. both opcodes.global.get | |
* and opcodes["global.get"] return |
NewerOlder