1 write to UnboundLambda
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7601this.UnboundLambda = unboundLambda;
15 references to UnboundLambda
Microsoft.CodeAnalysis.CSharp (15)
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)
8463return expr.UnboundLambda.WithNullableState(variableState); 9170UnboundLambda unboundLambda = lambda.UnboundLambda; 10411var 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)) 12157UnboundLambda unboundLambda = node.UnboundLambda; 14718UnboundLambda unboundLambda = node.UnboundLambda; 16979new TreeDumperNode("unboundLambda", null, new TreeDumperNode[] { Visit(node.UnboundLambda, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
777result.UnboundLambda,
Lowering\ClosureConversion\ClosureConversion.cs (1)
1630node = node.Update(node.UnboundLambda, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);
Lowering\ExtensionMethodBodyRewriter.cs (1)
105return node.Update(node.UnboundLambda, rewritten, body, node.Diagnostics, node.Binder, type);