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