7 references to Handlers
System.Core (7)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
1056
Visit(node.
Handlers
, VisitCatchBlock);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
415
public ReadOnlyCollection<CatchBlock> Handlers { get { return _node.
Handlers
; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
510
Visit(node.
Handlers
, VisitCatchBlock),
Microsoft\Scripting\Ast\TryExpression.cs (2)
116
/// <param name="handlers">The <see cref="
Handlers
" /> property of the result.</param>
121
if (body == Body && handlers ==
Handlers
&& @finally == Finally && fault == Fault) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (1)
726
foreach (CatchBlock cb in node.
Handlers
) {
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
850
ReadOnlyCollection<CatchBlock> handlers = node.
Handlers
;