static bool HandleIsInst(MetaMidRepresentationOperationFactory operationFactory, Instruction instruction)
        {
            if (instruction.OpCode == OpCodes.Isinst)
            {
                operationFactory.IsInst((Type)instruction.Operand);
                return(true);
            }

            return(false);
        }