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

Key: RSRP-41260
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Sergey Shkredov
Reporter: Olga Lobacheva
Votes: 0
Watchers: 0
Operations

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

Change Signature in VB doesn't check name conflicts correct

Created: 23 May 07 21:30   Updated: 16 Jul 07 15:27
Component/s: Refactorings - Change Signature
Fix Version/s: Future Versions
Security Level: Everybody (All jira users)

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


 Description  « Hide
I use change signature refactoring for method 'ChrFunction' and change it's name to 'Chr'. I should get conflict here: because usages of property 'Chr' in 'Base' class will be broken.

May be it is possible to reuse rename refactoring logic for check conflicts here??

Public Class Base
  WriteOnly Property Chr() As Boolean
    Set(ByVal value As Boolean)
    End Set
  End Property
End Class

Public Class Test
  Inherits Base

  Public Shared Function ChrFunction(ByVal x As Object) As Object
  End Function

End Class

Public Class Y
  Public Sub G()
    Dim x As New Test
    x.Chr() = True
  End Sub
End Class


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