async function test(a,b)
{
    console.log(a+b);
}

function test_missing(a,b)
{
    console.log(a+b);
}

As soon as one function is declared as async
the parser breaks and the symbollist does not show any more functions

Might be solved with
universal-ctags/ctags#1544
but patching Release failed 1.33


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.