8 references to Test
System.Core (8)
Microsoft\Scripting\Ast\CatchBlock.cs (1)
101return Expression.MakeCatchBlock(Test, variable, body, filter);
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
1035Out(Flow.NewLine, "} .Catch (" + node.Test.ToString());
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
77public Type Test { get { return _node.Test; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (1)
748Out("catch (" + node.Test.Name);
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (1)
113return Expression.MakeCatchBlock(node.Test, node.Variable, b, f);
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (2)
731_ilg.BeginCatchBlock(cb.Test); 802_ilg.Emit(OpCodes.Isinst, cb.Test);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
875handler = Expression.MakeCatchBlock(handler.Test, handler.Variable, rbody.Node, filter);