| File: Symbols\Tuples\TupleParameterSymbol.vb | Web Access |
| Project: src\roslyn\src\Compilers\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj (Microsoft.CodeAnalysis.VisualBasic) |
' 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. Namespace Microsoft.CodeAnalysis.VisualBasic.Symbols ''' <summary> ''' Represents a parameter of a method or a property of a tuple type ''' </summary> Friend NotInheritable Class TupleParameterSymbol Inherits WrappedParameterSymbol Private ReadOnly _container As Symbol Public Overrides ReadOnly Property ContainingSymbol As Symbol Get Return Me._container End Get End Property Friend Overrides ReadOnly Property IsCallerLineNumber As Boolean Get Return Me._underlyingParameter.IsCallerLineNumber End Get End Property Friend Overrides ReadOnly Property IsCallerFilePath As Boolean Get Return Me._underlyingParameter.IsCallerFilePath End Get End Property Friend Overrides ReadOnly Property IsCallerMemberName As Boolean Get Return Me._underlyingParameter.IsCallerMemberName End Get End Property Friend Overrides ReadOnly Property CallerArgumentExpressionParameterIndex As Integer Get Return Me._underlyingParameter.CallerArgumentExpressionParameterIndex End Get End Property Public Sub New(container As Symbol, underlyingParameter As ParameterSymbol) MyBase.New(underlyingParameter) Debug.Assert(container IsNot Nothing) Me._container = container End Sub Public Overrides Function GetHashCode() As Integer Return Me._underlyingParameter.GetHashCode() End Function Public Overrides Function Equals(obj As Object) As Boolean Return Me.Equals(TryCast(obj, TupleParameterSymbol)) End Function Public Overloads Function Equals(other As TupleParameterSymbol) As Boolean Return other Is Me OrElse (other IsNot Nothing AndAlso Me._container = other._container AndAlso Me._underlyingParameter = other._underlyingParameter) End Function End Class End Namespace