Reports the functions that have no return type declaration specified.

Example:


// Missing function's return type declaration on foo()
function foo()
{
    return "foo";
}

After the quick-fix is applied:


function foo(): string
{
    return "foo";
}