/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/BoundTree/BoundMethodGroupFlags.cs
20 строк
538 B
Julien Couvreur
Extensions: Bind invocations and member accesses (#77172)
20 фев 2025, 01:44
Не верифицирован
20 фев 2025, 01:44
9be7ce0
Код
Авторство
О чём код?
// 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; namespace Microsoft.CodeAnalysis.CSharp { [Flags] internal enum BoundMethodGroupFlags { None = 0, SearchExtensions = 1, /// <summary> /// Set if the group has a receiver but one was not specified in syntax. /// </summary> HasImplicitReceiver = 2, } }