1 write to Binder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7605this.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); 805lambdaBodyBinder = returnInferenceLambda.Binder;
Compilation\MemberSemanticModel.cs (3)
1749result = GetLambdaEnclosingBinder(position, node, innerLambdaOrQuery, ((BoundLambda)boundInnerLambdaOrQuery).Binder); 1812position, unbound.BindForErrorRecovery().Binder, unbound.Syntax); 1816position, lambda.Binder, lambda.Body.Syntax);
FlowAnalysis\NullableWalker.cs (1)
1699lambda.Binder,
Generated\BoundNodes.xml.Generated.cs (5)
7620if (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)) 11988return node.Update(unboundLambda, node.Symbol, body, node.Diagnostics, node.Binder, type); 14549updatedNode = node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, infoAndType.Type); 14554updatedNode = node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, node.Type); 16805new TreeDumperNode("binder", node.Binder, null),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1627node = node.Update(node.UnboundLambda, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);