| File: Symbols\PublicModel\DynamicTypeSymbol.cs | Web Access |
| Project: src\roslyn\src\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj (Microsoft.CodeAnalysis.CSharp) |
// 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. using System.Diagnostics; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel { internal sealed class DynamicTypeSymbol : TypeSymbol, IDynamicTypeSymbol { private readonly Symbols.DynamicTypeSymbol _underlying; public DynamicTypeSymbol(Symbols.DynamicTypeSymbol underlying, CodeAnalysis.NullableAnnotation nullableAnnotation) : base(nullableAnnotation) { RoslynDebug.Assert(underlying is object); _underlying = underlying; } protected override ITypeSymbol WithNullableAnnotation(CodeAnalysis.NullableAnnotation nullableAnnotation) { Debug.Assert(nullableAnnotation != _underlying.DefaultNullableAnnotation); Debug.Assert(nullableAnnotation != this.NullableAnnotation); return new DynamicTypeSymbol(_underlying, nullableAnnotation); } internal override CSharp.Symbol UnderlyingSymbol => _underlying; internal override Symbols.TypeSymbol UnderlyingTypeSymbol => _underlying; internal override Symbols.NamespaceOrTypeSymbol UnderlyingNamespaceOrTypeSymbol => _underlying; #region ISymbol Members protected override void Accept(SymbolVisitor visitor) { visitor.VisitDynamicType(this); } protected override TResult? Accept<TResult>(SymbolVisitor<TResult> visitor) where TResult : default { return visitor.VisitDynamicType(this); } protected override TResult Accept<TArgument, TResult>(SymbolVisitor<TArgument, TResult> visitor, TArgument argument) { return visitor.VisitDynamicType(this, argument); } #endregion } }