From 47d024a0da0d41b4d8ea01df31ae63108fc13a1b Mon Sep 17 00:00:00 2001 From: Will Fuqua Date: Sat, 23 Mar 2024 09:18:38 +0700 Subject: [PATCH] remove unused method --- CSharpRepl.Services/SymbolExploration/SymbolExplorer.cs | 9 --------- 1 file changed, 9 deletions(-) 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,