/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/CSharp/Portable/ExtractMethod/CSharpSyntaxTriviaService.cs
17 строк
562 B
Cyrus Najmabadi
Use implicit object creation expressions
13 сен 2025, 01:48
13 сен 2025, 01:48
4c6a36a
Код
Авторство
О чём код?
// 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 Microsoft.CodeAnalysis.ExtractMethod; namespace Microsoft.CodeAnalysis.CSharp.ExtractMethod; internal sealed class CSharpSyntaxTriviaService : AbstractSyntaxTriviaService { public static readonly CSharpSyntaxTriviaService Instance = new(); private CSharpSyntaxTriviaService() : base((int)SyntaxKind.EndOfLineTrivia) { } }