// # 1
if( true )
{
return false;
}
else
{
return true;
}
// # 2
try
{
return true;
}
catch( e:Error )
{
return false;
}
Would be very happy to get some answer on this because I don't want to
be adding extra garbage-returners in the end of functions just to make
the compilers happy.
Best Regards
//Bob