1
0

AsyncMethodGrouping.cs 222 B

12345678
  1. using System.Collections.Generic;
  2. using Microsoft.CodeAnalysis;
  3. namespace System.Linq.Async.SourceGenerator
  4. {
  5. internal sealed record AsyncMethodGrouping(SyntaxTree SyntaxTree, IEnumerable<AsyncMethod> Methods);
  6. }