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