1 instantiation of SimpleProgramBinder
Microsoft.CodeAnalysis.CSharp (1)
Binder\ExecutableCodeBinder.cs (1)
70var scopeOwner = new SimpleProgramBinder(this, entryPoint);
6 references to SimpleProgramBinder
Microsoft.CodeAnalysis.CSharp (6)
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
1024result = new SimpleProgramUnitBinder(result, (SimpleProgramBinder)bodyBinder.GetBinder(simpleProgram.SyntaxNode));
Binder\ExecutableCodeBinder.cs (1)
70var scopeOwner = new SimpleProgramBinder(this, entryPoint);
Binder\SimpleProgramUnitBinder.cs (3)
13/// for creating the symbols. That task is actually owned by <see cref="SimpleProgramBinder"/> and 19private readonly SimpleProgramBinder _scope; 20public SimpleProgramUnitBinder(Binder enclosing, SimpleProgramBinder scope)
Compilation\MemberSemanticModel.cs (1)
2025Debug.Assert(binder is SimpleProgramBinder);