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