1 write to UnboundLambda
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7600
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)
8160
return expr.
UnboundLambda
.WithNullableState(variableState);
8834
UnboundLambda unboundLambda = lambda.
UnboundLambda
;
10058
var unboundLambda = lambda.
UnboundLambda
;
Generated\BoundNodes.xml.Generated.cs (4)
7619
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))
12149
UnboundLambda unboundLambda = node.
UnboundLambda
;
14723
UnboundLambda unboundLambda = node.
UnboundLambda
;
16980
new TreeDumperNode("unboundLambda", null, new TreeDumperNode[] { Visit(node.
UnboundLambda
, null) }),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1625
node = node.Update(node.
UnboundLambda
, node.Symbol, newBody, node.Diagnostics, node.Binder, newType);
Lowering\ExtensionMethodBodyRewriter.cs (1)
100
return node.Update(node.
UnboundLambda
, rewritten, body, node.Diagnostics, node.Binder, type);