1 write to Finally
System.Linq.Expressions (1)
System\Linq\Expressions\TryExpression.cs (1)
29
Finally
= @finally;
14 references to Finally
System.Linq.Expressions (14)
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (3)
877
if (node.
Finally
!= null || node.Fault != null)
881
if (node.
Finally
!= null)
891
EmitExpressionAsVoid(node.
Finally
?? node.Fault!);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
1002
Result @finally = RewriteExpression(node.
Finally
, Stack.Empty);
System\Linq\Expressions\DebugViewWriter.cs (2)
1093
if (node.
Finally
!= null)
1097
Visit(node.
Finally
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
449
public Expression? Finally => _node.
Finally
;
System\Linq\Expressions\ExpressionVisitor.cs (1)
516
Visit(node.
Finally
),
System\Linq\Expressions\Interpreter\LightCompiler.cs (4)
1978
if (node.
Finally
!= null)
2069
if (node.
Finally
!= null)
2076
CompileAsVoid(node.
Finally
);
2100
Debug.Assert(expr.
Finally
== null);
System\Linq\Expressions\TryExpression.cs (2)
80
/// <param name="finally">The <see cref="
Finally
"/> property of the result.</param>
85
if (body == Body & @finally ==
Finally
& fault == Fault)