/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/Syntax/ExtensionBlockDeclarationSyntax.cs
22 строки
913 B
Julien Couvreur
Extensions: rename syntax node (#78625)
20 май 2025, 03:21
Не верифицирован
20 май 2025, 03:21
8a0684c
Код
Авторство
О чём код?
// 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.CSharp.Syntax { public partial class ExtensionBlockDeclarationSyntax { public override SyntaxToken Identifier => default; internal override BaseTypeDeclarationSyntax WithIdentifierCore(SyntaxToken identifier) => throw new System.NotSupportedException(); public override BaseListSyntax? BaseList => null; internal override BaseTypeDeclarationSyntax AddBaseListTypesCore(params BaseTypeSyntax[] items) => throw new System.NotSupportedException(); internal override BaseTypeDeclarationSyntax WithBaseListCore(BaseListSyntax? baseList) => throw new System.NotSupportedException(); } }