7 references to MakeCatchBlock
System.Core (7)
Microsoft\Scripting\Ast\CatchBlock.cs (5)
101return Expression.MakeCatchBlock(Test, variable, body, filter); 115return MakeCatchBlock(type, null, body, null); 126return MakeCatchBlock(variable.Type, variable, body, null); 138return MakeCatchBlock(type, null, body, filter); 151return MakeCatchBlock(variable.Type, variable, body, filter);
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (1)
113return Expression.MakeCatchBlock(node.Test, node.Variable, b, f);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
875handler = Expression.MakeCatchBlock(handler.Test, handler.Variable, rbody.Node, filter);