|
' 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 Microsoft.CodeAnalysis.VisualBasic.EditAndContinue
Imports Microsoft.CodeAnalysis.VisualBasic.Symbols
Imports Microsoft.CodeAnalysis.EditAndContinue
Imports Microsoft.CodeAnalysis.EditAndContinue.UnitTests
Imports Microsoft.CodeAnalysis.Differencing
Imports Microsoft.CodeAnalysis.VisualBasic.EditAndContinue.UnitTests
Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.EditAndContinue
Friend NotInheritable Class VisualBasicEditAndContinueTestVerifier
Inherits EditAndContinueTestVerifier
Private ReadOnly _analyzer As VisualBasicEditAndContinueAnalyzer
Public Sub New(Optional faultInjector As Action(Of SyntaxNode) = Nothing)
_analyzer = New VisualBasicEditAndContinueAnalyzer(faultInjector)
End Sub
Public Overrides ReadOnly Property Analyzer As AbstractEditAndContinueAnalyzer
Get
Return _analyzer
End Get
End Property
Public Overrides ReadOnly Property LanguageName As String
Get
Return LanguageNames.VisualBasic
End Get
End Property
Public Overrides ReadOnly Property ProjectFileExtension As String
Get
Return ".vbproj"
End Get
End Property
Public Overrides ReadOnly Property TopSyntaxComparer As TreeComparer(Of SyntaxNode)
Get
Return SyntaxComparer.TopLevel
End Get
End Property
Public Overrides Function GetDeclarators(method As ISymbol) As ImmutableArray(Of SyntaxNode)
Assert.True(TypeOf method Is IMethodSymbol, "Only methods should have a syntax map.")
Return LocalVariableDeclaratorsCollector.GetDeclarators(DirectCast(method, SourceMethodSymbol))
End Function
Public Overrides Function TryGetResource(keyword As String) As String
Return EditingTestBase.TryGetResource(keyword)
End Function
End Class
End Namespace
|