1 write to Binder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7287this.Binder = binder;
13 references to Binder
Microsoft.CodeAnalysis.CSharp (13)
BoundTree\UnboundLambda.cs (3)
147var compilation = Binder.Compilation; 156inferredReturnType = InferReturnType(returnTypes, node: this, Binder, delegateType, Symbol.IsAsync, conversions); 766lambdaBodyBinder = returnInferenceLambda.Binder;
Compilation\MemberSemanticModel.cs (3)
1740result = GetLambdaEnclosingBinder(position, node, innerLambdaOrQuery, ((BoundLambda)boundInnerLambdaOrQuery).Binder); 1803position, unbound.BindForErrorRecovery().Binder, unbound.Syntax); 1807position, lambda.Binder, lambda.Body.Syntax);
FlowAnalysis\NullableWalker.cs (1)
1651lambda.Binder,
Generated\BoundNodes.xml.Generated.cs (5)
7302if (unboundLambda != this.UnboundLambda || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(symbol, this.Symbol) || body != this.Body || diagnostics != this.Diagnostics || binder != this.Binder || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11554return node.Update(unboundLambda, node.Symbol, body, node.Diagnostics, node.Binder, type); 14012updatedNode = node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, infoAndType.Type); 14017updatedNode = node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, node.Type); 16185new TreeDumperNode("binder", node.Binder, null),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1599node = node.Update(node.UnboundLambda, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);