10 references to Finally
System.Core (10)
Microsoft\Scripting\Ast\DebugViewWriter.cs (2)
1057
if (node.
Finally
!= null) {
1060
Visit(node.
Finally
);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
414
public Expression Finally { get { return _node.
Finally
; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
511
Visit(node.
Finally
),
Microsoft\Scripting\Ast\TryExpression.cs (2)
117
/// <param name="finally">The <see cref="
Finally
" /> property of the result.</param>
121
if (body == Body && handlers == Handlers && @finally ==
Finally
&& fault == Fault) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (3)
758
if (node.
Finally
!= null || node.Fault != null) {
761
if (node.
Finally
!= null) {
768
EmitExpressionAsVoid(node.
Finally
?? node.Fault);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
891
Result @finally = RewriteExpression(node.
Finally
, Stack.Empty);