8 references to Test
System.Core (8)
Microsoft\Scripting\Ast\CatchBlock.cs (1)
101
return Expression.MakeCatchBlock(
Test
, variable, body, filter);
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
1035
Out(Flow.NewLine, "} .Catch (" + node.
Test
.ToString());
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
77
public Type Test { get { return _node.
Test
; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (1)
748
Out("catch (" + node.
Test
.Name);
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (1)
113
return 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)
875
handler = Expression.MakeCatchBlock(handler.
Test
, handler.Variable, rbody.Node, filter);