11 references to GetBinder
Microsoft.CodeAnalysis.CSharp (11)
Binder\Binder_Initializers.cs (1)
206
Binder scriptClassBinder = binderFactory.
GetBinder
(syntax);
Compilation\CSharpCompilation.cs (1)
2607
return GetBinderFactory(syntax.SyntaxTree).
GetBinder
(syntax);
Compilation\SyntaxTreeSemanticModel.cs (2)
1072
Binder defaultOuter() => _binderFactory.
GetBinder
(node).WithAdditionalFlags(this.IgnoresAccessibility ? BinderFlags.IgnoreAccessibility : BinderFlags.None);
1717
return ExplicitInterfaceHelpers.GetMemberName(_binderFactory.
GetBinder
(declaration), explicitInterfaceSpecifierOpt, memberName);
FlowAnalysis\NullableWalker.cs (1)
1444
compilation.GetBinderFactory(node.SyntaxTree).
GetBinder
(node.Syntax);
Symbols\Source\SourceComplexParameterSymbol.cs (1)
305
binder = binderFactory.
GetBinder
(syntax);
Symbols\Source\SourceMemberMethodSymbol.cs (1)
745
Binder result = (binderFactoryOpt ?? this.DeclaringCompilation.GetBinderFactory(contextNode.SyntaxTree)).
GetBinder
(contextNode);
Symbols\Source\SourceNamedTypeSymbol.cs (1)
1276
QuickAttributeChecker checker = this.DeclaringCompilation.GetBinderFactory(list.Node.SyntaxTree).
GetBinder
(list.Node).QuickAttributeChecker;
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
408
return binderFactory.
GetBinder
(syntax);
Symbols\Source\SourcePropertySymbol.cs (1)
547
var binder = binderFactory.
GetBinder
(syntax, syntax, this);
Symbols\Symbol_Attributes.cs (1)
671
var binder = rootBinder ?? compilation.GetBinderFactory(attributeDeclarationSyntaxList.Node!.SyntaxTree).
GetBinder
(attributeDeclarationSyntaxList.Node);