/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/VisualBasic/Portable/Emit/EditAndContinue/VisualBasicSymbolChanges.vb
22 строки
828 B
Jonathon Marolf
update headers
23 янв 2020, 04:01
Не верифицирован
23 янв 2020, 04:01
91571a3
Код
Авторство
О чём код?
' 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 Microsoft.CodeAnalysis.Emit Imports Microsoft.CodeAnalysis.Symbols Namespace Microsoft.CodeAnalysis.VisualBasic.Emit Friend NotInheritable Class VisualBasicSymbolChanges Inherits SymbolChanges Public Sub New(definitionMap As DefinitionMap, edits As IEnumerable(Of SemanticEdit), isAddedSymbol As Func(Of ISymbol, Boolean)) MyBase.New(definitionMap, edits, isAddedSymbol) End Sub Protected Overrides Function GetISymbolInternalOrNull(symbol As ISymbol) As ISymbolInternal Return TryCast(symbol, Symbol) End Function End Class End Namespace