Skip to content

Commit

Permalink
remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
waf committed Mar 23, 2024
1 parent ba65183 commit 47d024a
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions CSharpRepl.Services/SymbolExploration/SymbolExplorer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 47d024a

Please sign in to comment.