js-confuser-vm 0.0.8 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/options.ts CHANGED
@@ -5,6 +5,7 @@ export interface Options {
5
5
  shuffleOpcodes?: boolean; // shuffle order of opcode handlers in the runtime?
6
6
  encodeBytecode?: boolean; // encode bytecode? when off, comments for instructions are added
7
7
  selfModifying?: boolean; // do self-modifying bytecode for function bodies?
8
+ dispatcher?: boolean; // create middleman blocks to process jumps?
8
9
  macroOpcodes?: boolean; // create combined opcodes for repeated instruction sequences?
9
10
  microOpcodes?: boolean; // break opcodes into sub-opcodes?
10
11
  specializedOpcodes?: boolean; // create specialized opcodes for commonly used opcode+operand pairs?