History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-45402
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Ilya Ryzhenkov
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
ReSharper

'Generate argument stubs' QF generates single declaration statement for two variables

Created: 12 Jul 07 19:20   Updated: 13 Mar 08 22:38
Component/s: Generate Action
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 500


 Description  « Hide
IList<string> outputLines, errorLines; // generated
            new ProcessRunner(GetPathToExecutable(), null).Run(out outputLines, out errorLines)

Expected (as a matter of style):

IList<string> outputLines;
            IList<string> errorLines;
            new ProcessRunner(GetPathToExecutable(), null).Run(out outputLines, out errorLines)


 All   Comments   Work Log   Change History      Sort Order:
Andrey Simanovsky - 24 Jul 07 18:58
Seems strange that anybody wishes so, but it may be an option.