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