I do have QAbstractListModel which contains object which has derived QObject. It has one INVOKABLE method which I would like call from QML side. How I do that ?

Like:

function makeTest ()
{
list.model(list.currentIndex).doINVOKABLE();
}

Why this isn't work ?