5 references to MultipleStatements
Microsoft.CodeAnalysis.CSharp.Features (3)
ExtractMethod\CSharpMethodExtractor.CSharpCodeGenerator.cs (1)
56
SelectionType.
MultipleStatements
=> new MultipleStatementsCodeGenerator(selectionResult, analyzerResult, options, localFunction),
ExtractMethod\CSharpSelectionValidator.cs (2)
172
if (selectionInfo.GetSelectionType() == SelectionType.
MultipleStatements
)
285
if (selectionInfo.GetSelectionType() != SelectionType.
MultipleStatements
&& commonNode.HasDiagnostics())
Microsoft.CodeAnalysis.Features (2)
ExtractMethod\SelectionInfo.cs (1)
109
return SelectionType.
MultipleStatements
;
ExtractMethod\SelectionResult.cs (1)
77
public bool IsExtractMethodOnMultipleStatements => this.SelectionType == SelectionType.
MultipleStatements
;