diff --git a/CSharpRepl.Services/SymbolExploration/SymbolExplorer.cs b/CSharpRepl.Services/SymbolExploration/SymbolExplorer.cs index d4e80cf..f23450c 100644 --- a/CSharpRepl.Services/SymbolExploration/SymbolExplorer.cs +++ b/CSharpRepl.Services/SymbolExploration/SymbolExplorer.cs @@ -163,15 +163,6 @@ orderby node.Span.Length m => m ); - private static SequencePointRange? FindConstructor(MetadataReader symbolReader, MetadataReader assemblyReader, TypeDefinition type, IMethodSymbol method) => - FindSequencePoint( - symbolReader, - type.GetMethods(), - m => assemblyReader.GetMethodDefinition(m), - m => assemblyReader.GetString(m.Name) == method.Name, - m => m - ); - private static SequencePointRange? FindProperty(MetadataReader symbolReader, MetadataReader assemblyReader, TypeDefinition type, IPropertySymbol method) => FindSequencePoint( symbolReader,