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

Key: RSRP-20957
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Dmitry Lomov
Reporter: Olga Lobacheva
Votes: 0
Watchers: 0
Operations

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

ReSharper suggest to bind my field name with class

Created: 06 Aug 06 03:35   Updated: 20 Jun 07 10:58
Component/s: PSI - Parser
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
Issue Links:
Duplicate
 
This issue is duplicated by:
RSRP-20956 ReSharper suggest to bind my field na... Closed

Build: 228
Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=20957


 Description  « Hide
internal class OperatorResolutionsCacheGenerator
{
private PredefinedType predefined;
private IType[] myTypes;
private string[] myBinaryNames = new string[] { "+", "-", "*", "/", "%", "==", "!=", "<", ">", "<=", ">=", "<<", ">>", "&", "|", "^" };
private string[] myUnaryNames = new string[] { "+", "-", "~", "++","--"};

//some problem here
private readonly string CacheKey

public OperatorResolutionsCacheGenerator(PredefinedType type)
{
predefined = type;
myTypes = new IType[] { predefined.Sbyte, predefined.Byte, predefined.Short, predefined.Ushort, predefined.Int, predefined.Uint, predefined.Long, predefined.Ulong, predefined.Float, predefined.Double, predefined.Decimal };
}
}



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.