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> 98if (variable == Variable && filter == Filter && body == Body) {
Microsoft\Scripting\Ast\DebugViewWriter.cs (2)
1040if (node.Filter != null) { 1042Visit(node.Filter);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
76public Expression Filter { get { return _node.Filter; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
498return node.Update(VisitAndConvert(node.Variable, "VisitCatchBlock"), Visit(node.Filter), Visit(node.Body));
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (2)
106Expression f = Visit(node.Filter); 110if (b == node.Body && f == node.Filter) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (3)
730if (cb.Filter == null) { 789if (cb.Filter == null) { 813EmitExpression(cb.Filter);
Microsoft\Scripting\Compiler\StackSpiller.cs (3)
860Expression filter = handler.Filter; 861if (handler.Filter != null) { 863Result rfault = RewriteExpression(handler.Filter, Stack.Empty);