6 references to GetBinder
Microsoft.CodeAnalysis.CSharp (6)
Binder\BinderFactory.BinderFactoryVisitor.cs (2)
874outer = _factory.GetBinder(parent.Parent, position); 1407return factory.GetBinder(baseTypeDeclaration, baseTypeDeclaration.OpenBraceToken.SpanStart);
Binder\BinderFactory.cs (1)
121return GetBinder(node, position, memberDeclarationOpt, memberOpt);
Compilation\SyntaxTreeSemanticModel.cs (2)
157return _binderFactory.GetBinder(this.Root, position).WithAdditionalFlags(GetSemanticModelBinderFlags()); 166return _binderFactory.GetBinder((CSharpSyntaxNode)token.Parent, position).WithAdditionalFlags(GetSemanticModelBinderFlags());
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
187Binder binder = factory.GetBinder(nameAttr, nameAttr.Identifier.SpanStart);