private static string GetReturn(TorqueType type, string stmt)
        {
            string prefix = "";

            if (!type.IsVoid)
            {
                prefix = "return ";
            }
            return(prefix + type.GetReturnString(stmt));
        }