1 write to Filter
System.Linq.Expressions (1)
System\Linq\Expressions\CatchBlock.cs (1)
21Filter = filter;
21 references to Filter
System.Linq.Expressions (21)
System\Linq\Expressions\CatchBlock.cs (2)
59/// <param name="filter">The <see cref="Filter"/> property of the result.</param> 64if (variable == Variable && filter == Filter && body == Body)
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (3)
845if (cb.Filter == null) 916if (cb.Filter == null) 941EmitExpression(cb.Filter);
System\Linq\Expressions\Compiler\StackSpiller.cs (3)
970Expression? filter = handler.Filter; 971if (handler.Filter != null) 974Result rfault = RewriteExpression(handler.Filter, Stack.Empty);
System\Linq\Expressions\Compiler\VariableBinder.cs (2)
134Visit(node.Filter); 139Visit(node.Filter);
System\Linq\Expressions\DebugViewWriter.cs (2)
1074if (node.Filter != null) 1077Visit(node.Filter);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
64public Expression? Filter => _node.Filter;
System\Linq\Expressions\ExpressionVisitor.cs (1)
502return node.Update(VisitAndConvert(node.Variable, nameof(VisitCatchBlock)), Visit(node.Filter), Visit(node.Body));
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
2016if (handler.Filter != null) 2027Compile(handler.Filter); 2818Visit(node.Filter);
System\Linq\Expressions\Interpreter\TypeOperations.cs (2)
563Expression? f = Visit(node.Filter); 568if (b == node.Body && f == node.Filter)
System\Runtime\CompilerServices\RuntimeOps.ExpressionQuoter.cs (2)
118Expression? f = Visit(node.Filter); 123if (b == node.Body && f == node.Filter)