1 write to Binder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7604this.Binder = binder;
14 references to Binder
Microsoft.CodeAnalysis.CSharp (14)
BoundTree\UnboundLambda.cs (3)
147var compilation = Binder.Compilation; 156inferredReturnType = InferReturnType(returnTypes, node: this, Binder, delegateType, Symbol.IsAsync, conversions); 826lambdaBodyBinder = 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)
1777lambda.Binder,
Generated\BoundNodes.xml.Generated.cs (5)
7619if (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)) 12152return node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, type); 14729updatedNode = node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, infoAndType.Type); 14734updatedNode = node.Update(unboundLambda, symbol, body, node.Diagnostics, node.Binder, node.Type); 16984new TreeDumperNode("binder", node.Binder, null),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1625node = node.Update(node.UnboundLambda, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);
Lowering\ExtensionMethodBodyRewriter.cs (1)
100return node.Update(node.UnboundLambda, rewritten, body, node.Diagnostics, node.Binder, type);