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