1 write to UnboundLambda
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7604
this.
UnboundLambda
= unboundLambda;
14 references to UnboundLambda
Microsoft.CodeAnalysis.CSharp (14)
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)
8311
return expr.
UnboundLambda
.WithNullableState(variableState);
9017
UnboundLambda unboundLambda = lambda.
UnboundLambda
;
10250
var unboundLambda = lambda.
UnboundLambda
;
Generated\BoundNodes.xml.Generated.cs (4)
7623
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))
12155
UnboundLambda unboundLambda = node.
UnboundLambda
;
14729
UnboundLambda unboundLambda = node.
UnboundLambda
;
16988
new TreeDumperNode("unboundLambda", null, new TreeDumperNode[] { Visit(node.
UnboundLambda
, null) }),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1630
node = node.Update(node.
UnboundLambda
, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);
Lowering\ExtensionMethodBodyRewriter.cs (1)
104
return node.Update(node.
UnboundLambda
, rewritten, body, node.Diagnostics, node.Binder, type);