/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/BoundTree/BoundImplicitIndexerAccess.cs
24 строки
973 B
AlekseyTs
Hold Receiver directly in bound node for implicit indexer access (#58009)
30 ноя 2021, 20:13
Не верифицирован
30 ноя 2021, 20:13
03f6adf
Код
Авторство
О чём код?
// 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 { internal partial class BoundImplicitIndexerAccess { internal BoundImplicitIndexerAccess WithLengthOrCountAccess(BoundExpression lengthOrCountAccess) { return this.Update(this.Receiver, this.Argument, lengthOrCountAccess, this.ReceiverPlaceholder, this.IndexerOrSliceAccess, this.ArgumentPlaceholders, this.Type); } private partial void Validate() { Debug.Assert(LengthOrCountAccess is BoundPropertyAccess or BoundArrayLength or BoundLocal or BoundBadExpression); Debug.Assert(IndexerOrSliceAccess is BoundIndexerAccess or BoundCall or BoundArrayAccess); } } }