12 lines
267 B
C#
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);
|
|
}
|
|
}
|