8 references to MakeCatchBlock
System.Linq.Expressions (8)
System\Linq\Expressions\CatchBlock.cs (5)
68
return Expression.
MakeCatchBlock
(Test, variable, body, filter);
84
return
MakeCatchBlock
(type, null, body, filter: null);
96
return
MakeCatchBlock
(variable.Type, variable, body, filter: null);
109
return
MakeCatchBlock
(type, null, body, filter);
123
return
MakeCatchBlock
(variable.Type, variable, body, filter);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
987
handler = Expression.
MakeCatchBlock
(handler.Test, handler.Variable, rbody.Node, filter);
System\Linq\Expressions\Interpreter\TypeOperations.cs (1)
572
return Expression.
MakeCatchBlock
(node.Test, node.Variable, b, f);
System\Runtime\CompilerServices\RuntimeOps.ExpressionQuoter.cs (1)
127
return Expression.
MakeCatchBlock
(node.Test, node.Variable, b, f);