Ejemplo n.º 1
0
        /// <inheritdoc />
        public void EnterHandlerBlock(ExceptionHandlerBlock <TInstruction> block, int handlerIndex)
        {
            AppendIndentationString();
            _builder.AppendLine($"handler{handlerIndex}:");

            OpenScope();
        }
Ejemplo n.º 2
0
        /// <inheritdoc />
        public void ExitExceptionHandlerBlock(ExceptionHandlerBlock <TInstruction> block)
        {
            _indentationLevel--;

            AppendIndentationString();
            _builder.Append('}');
            _builder.AppendLine();
        }
Ejemplo n.º 3
0
        /// <inheritdoc />
        public void EnterExceptionHandlerBlock(ExceptionHandlerBlock <TInstruction> block)
        {
            AppendIndentationString();
            _builder.Append('{');
            _builder.AppendLine();

            _indentationLevel++;
        }
Ejemplo n.º 4
0
        /// <inheritdoc />
        public void VisitExceptionHandlerBlock(ExceptionHandlerBlock <TInstruction> block)
        {
            _listener.EnterExceptionHandlerBlock(block);

            _listener.EnterProtectedBlock(block);
            block.ProtectedBlock.AcceptVisitor(this);
            _listener.ExitProtectedBlock(block);

            for (int i = 0; i < block.HandlerBlocks.Count; i++)
            {
                var handlerBlock = block.HandlerBlocks[i];

                _listener.EnterHandlerBlock(block, i);
                handlerBlock.AcceptVisitor(this);
                _listener.ExitHandlerBlock(block, i);
            }

            _listener.ExitExceptionHandlerBlock(block);
        }
Ejemplo n.º 5
0
 /// <inheritdoc />
 public void ExitHandlerBlock(ExceptionHandlerBlock <TInstruction> block, int handlerIndex)
 {
 }
Ejemplo n.º 6
0
 /// <inheritdoc />
 public void ExitProtectedBlock(ExceptionHandlerBlock <TInstruction> block)
 {
 }
Ejemplo n.º 7
0
 /// <inheritdoc />
 public void EnterProtectedBlock(ExceptionHandlerBlock <TInstruction> block)
 {
     AppendIndentationString();
     _builder.AppendLine("try:");
 }
Ejemplo n.º 8
0
 /// <inheritdoc />
 public void ExitExceptionHandlerBlock(ExceptionHandlerBlock <TInstruction> block) => CloseScope();
Ejemplo n.º 9
0
 /// <inheritdoc />
 public void EnterExceptionHandlerBlock(ExceptionHandlerBlock <TInstruction> block) => OpenScope();
Ejemplo n.º 10
0
 /// <inheritdoc />
 public void ExitHandlerBlock(ExceptionHandlerBlock <TInstruction> block, int handlerIndex) => CloseScope();