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