/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/Symbols/PublicModel/RangeVariableSymbol.cs
38 строк
1 KB
Siegfried Pammer
Fix #55183: Add SymbolVisitor<TArgument, TResult> (#56530)
15 апр 2022, 00:24
Не верифицирован
15 апр 2022, 00:24
646e3c4
Код
Авторство
О чём код?
// 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. #nullable disable using System.Diagnostics; namespace Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel { internal sealed class RangeVariableSymbol : Symbol, IRangeVariableSymbol { private readonly Symbols.RangeVariableSymbol _underlying; public RangeVariableSymbol(Symbols.RangeVariableSymbol underlying) { Debug.Assert(underlying is object); _underlying = underlying; } internal override CSharp.Symbol UnderlyingSymbol => _underlying; protected override void Accept(SymbolVisitor visitor) { visitor.VisitRangeVariable(this); } protected override TResult Accept<TResult>(SymbolVisitor<TResult> visitor) { return visitor.VisitRangeVariable(this); } protected override TResult Accept<TArgument, TResult>(SymbolVisitor<TArgument, TResult> visitor, TArgument argument) { return visitor.VisitRangeVariable(this, argument); } } }