/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/ExpressionEvaluator/VisualBasic/Source/ExpressionCompiler/Symbols/EEDisplayClassFieldLocalSymbol.vb
65 строк
2 KB
Cyrus Najmabadi
Organize VB imports
27 июн 2025, 21:53
27 июн 2025, 21:53
e9c47fd
Код
Авторство
О чём код?
' 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.Symbols Namespace Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator ''' <summary> ''' A display class field representing a local, exposed ''' as a local on the original method. ''' </summary> Friend NotInheritable Class EEDisplayClassFieldLocalSymbol Inherits EELocalSymbolBase Private ReadOnly _variable As DisplayClassVariable Public Sub New(variable As DisplayClassVariable) MyBase.New(variable.ContainingSymbol, variable.Type) Me._variable = variable End Sub Friend Overrides ReadOnly Property DeclarationKind As LocalDeclarationKind Get Return LocalDeclarationKind.Variable End Get End Property Friend Overrides Function ToOtherMethod(method As MethodSymbol, typeMap As TypeSubstitution) As EELocalSymbolBase Return New EEDisplayClassFieldLocalSymbol(Me._variable.ToOtherMethod(method, typeMap)) End Function Public Overrides ReadOnly Property Name As String Get Debug.Assert(Me._variable.Kind <> DisplayClassVariableKind.Me) Return Me._variable.Name End Get End Property Public Overrides ReadOnly Property Locations As ImmutableArray(Of Location) Get Return NoLocations End Get End Property Friend Overrides ReadOnly Property IdentifierLocation As Location Get Throw ExceptionUtilities.Unreachable End Get End Property Friend Overrides ReadOnly Property IdentifierToken As SyntaxToken Get Return Nothing End Get End Property Public Overrides ReadOnly Property DeclaringSyntaxReferences As ImmutableArray(Of SyntaxReference) Get Return ImmutableArray(Of SyntaxReference).Empty End Get End Property End Class End Namespace