Files
2026-08-27 10:56:38 -06:00

12 lines
267 B
C#

namespace Microsoft.CodeAnalysis.CSharp;
internal readonly struct ExtensionMethodScopes(Binder binder)
{
private readonly Binder _binder = binder;
public ExtensionMethodScopeEnumerator GetEnumerator()
{
return new ExtensionMethodScopeEnumerator(_binder);
}
}