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