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