14 references to Filter
System.Core (14)
Microsoft\Scripting\Ast\CatchBlock.cs (2)
94
/// <param name="filter">The <see cref="
Filter
" /> property of the result.</param>
98
if (variable == Variable && filter ==
Filter
&& body == Body) {
Microsoft\Scripting\Ast\DebugViewWriter.cs (2)
1040
if (node.
Filter
!= null) {
1042
Visit(node.
Filter
);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
76
public Expression Filter { get { return _node.
Filter
; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
498
return node.Update(VisitAndConvert(node.Variable, "VisitCatchBlock"), Visit(node.
Filter
), Visit(node.Body));
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (2)
106
Expression f = Visit(node.
Filter
);
110
if (b == node.Body && f == node.
Filter
) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (3)
730
if (cb.
Filter
== null) {
789
if (cb.
Filter
== null) {
813
EmitExpression(cb.
Filter
);
Microsoft\Scripting\Compiler\StackSpiller.cs (3)
860
Expression filter = handler.
Filter
;
861
if (handler.
Filter
!= null) {
863
Result rfault = RewriteExpression(handler.
Filter
, Stack.Empty);