File: ExtractMethod\VisualBasicMethodExtractor.VisualBasicCodeGenerator.MultipleStatementsCodeGenerator.vb
Web Access
Project: src\src\Features\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.Features.vbproj (Microsoft.CodeAnalysis.VisualBasic.Features)
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
 
Imports System.Collections.Immutable
Imports System.Threading
Imports Microsoft.CodeAnalysis
Imports Microsoft.CodeAnalysis.ExtractMethod
Imports Microsoft.CodeAnalysis.VisualBasic.Syntax
 
Namespace Microsoft.CodeAnalysis.VisualBasic.ExtractMethod
    Partial Friend NotInheritable Class VisualBasicExtractMethodService
        Partial Friend Class VisualBasicMethodExtractor
            Partial Private Class VisualBasicCodeGenerator
                Private Class MultipleStatementsCodeGenerator
                    Inherits VisualBasicCodeGenerator
 
                    Public Sub New(
                            selectionResult As SelectionResult,
                            analyzerResult As AnalyzerResult,
                            options As ExtractMethodGenerationOptions)
                        MyBase.New(selectionResult, analyzerResult, options)
                    End Sub
 
                    Protected Overrides Function CreateMethodName() As SyntaxToken
                        ' change this to more smarter one.
                        Dim semanticModel = SemanticDocument.SemanticModel
                        Dim nameGenerator = New UniqueNameGenerator(semanticModel)
                        Dim containingScope = Me.SelectionResult.GetContainingScope()
                        Return SyntaxFactory.Identifier(nameGenerator.CreateUniqueMethodName(containingScope, "NewMethod"))
                    End Function
 
                    Protected Overrides Function GetInitialStatementsForMethodDefinitions() As ImmutableArray(Of StatementSyntax)
                        Dim firstStatementUnderContainer = Me.SelectionResult.GetFirstStatementUnderContainer()
                        Dim lastStatementUnderContainer = Me.SelectionResult.GetLastStatementUnderContainer()
 
                        Dim statements = firstStatementUnderContainer.Parent.GetStatements()
 
                        Dim firstStatementIndex = statements.IndexOf(firstStatementUnderContainer)
                        Contract.ThrowIfFalse(firstStatementIndex >= 0)
 
                        Dim lastStatementIndex = statements.IndexOf(lastStatementUnderContainer)
                        Contract.ThrowIfFalse(lastStatementIndex >= 0)
 
                        Dim nodes = statements.
                            Skip(firstStatementIndex).
                            Take(lastStatementIndex - firstStatementIndex + 1)
 
                        Return nodes.ToImmutableArray()
                    End Function
 
                    Protected Overrides Function GetFirstStatementOrInitializerSelectedAtCallSite() As StatementSyntax
                        Return Me.SelectionResult.GetFirstStatementUnderContainer()
                    End Function
 
                    Protected Overrides Function GetLastStatementOrInitializerSelectedAtCallSite() As StatementSyntax
                        Return Me.SelectionResult.GetLastStatementUnderContainer()
                    End Function
 
                    Protected Overrides Function GetStatementOrInitializerContainingInvocationToExtractedMethodAsync(cancellationToken As CancellationToken) As Task(Of StatementSyntax)
                        Return Task.FromResult(Of StatementSyntax)(
                            GetStatementContainingInvocationToExtractedMethodWorker().WithAdditionalAnnotations(CallSiteAnnotation))
                    End Function
                End Class
            End Class
        End Class
    End Class
End Namespace