1 write to UnboundLambda
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7601this.UnboundLambda = unboundLambda;
13 references to UnboundLambda
Microsoft.CodeAnalysis.CSharp (13)
BoundTree\UnboundLambda.cs (5)
137Debug.Assert(!UnboundLambda.HasExplicitReturnType(out _, out _)); 165UnboundLambda.Data.CreateLambdaSymbol(delegateType, containingSymbol); 173=> UnboundLambda.Data.CreateLambdaSymbol( 188Debug.Assert(!node.UnboundLambda.HasExplicitReturnType(out _, out _)); 189return InferReturnTypeImpl(returnTypes, node, binder, delegateType, isAsync, conversions, node.UnboundLambda.WithDependencies);
FlowAnalysis\NullableWalker.cs (3)
8002return expr.UnboundLambda.WithNullableState(variableState); 8674UnboundLambda unboundLambda = lambda.UnboundLambda; 9895var unboundLambda = lambda.UnboundLambda;
Generated\BoundNodes.xml.Generated.cs (4)
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)) 11985UnboundLambda unboundLambda = node.UnboundLambda; 14543UnboundLambda unboundLambda = node.UnboundLambda; 16801new TreeDumperNode("unboundLambda", null, new TreeDumperNode[] { Visit(node.UnboundLambda, null) }),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1627node = node.Update(node.UnboundLambda, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);