libclassfile - v2.1.0
    Preparing search index...

    Interface BytecodeInstruction

    The general type of a bytecode instruction. Use BytecodeInstructionType for a more narrow type.

    interface BytecodeInstruction {
        mnemonic: string;
        opcode: number;
        operands: (number | bigint | (number | bigint)[] | (number | bigint)[][])[];
        pos: number;
        wide: boolean;
    }
    Index

    Properties

    mnemonic: string
    opcode: number
    operands: (number | bigint | (number | bigint)[] | (number | bigint)[][])[]
    pos: number
    wide: boolean