Вход Регистрация
Файл: vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/IndentedCodeParser.php
Строк: 107
<?php

declare(strict_types=1);

/*
 * This file is part of the league/commonmark package.
 *
 * (c) Colin O'Dell <colinodell@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace LeagueCommonMarkExtensionCommonMarkParserBlock;

use 
LeagueCommonMarkExtensionCommonMarkNodeBlockIndentedCode;
use 
LeagueCommonMarkParserBlockAbstractBlockContinueParser;
use 
LeagueCommonMarkParserBlockBlockContinue;
use 
LeagueCommonMarkParserBlockBlockContinueParserInterface;
use 
LeagueCommonMarkParserCursor;
use 
LeagueCommonMarkUtilArrayCollection;

final class 
IndentedCodeParser extends AbstractBlockContinueParser
{
    
/** @psalm-readonly */
    
private IndentedCode $block;

    
/** @var ArrayCollection<string> */
    
private ArrayCollection $strings;

    public function 
__construct()
    {
        
$this->block   = new IndentedCode();
        
$this->strings = new ArrayCollection();
    }

    public function 
getBlock(): IndentedCode
    
{
        return 
$this->block;
    }

    public function 
tryContinue(Cursor $cursorBlockContinueParserInterface $activeBlockParser): ?BlockContinue
    
{
        if (
$cursor->isIndented()) {
            
$cursor->advanceBy(Cursor::INDENT_LEVELtrue);

            return 
BlockContinue::at($cursor);
        }

        if (
$cursor->isBlank()) {
            
$cursor->advanceToNextNonSpaceOrTab();

            return 
BlockContinue::at($cursor);
        }

        return 
BlockContinue::none();
    }

    public function 
addLine(string $line): void
    
{
        
$this->strings[] = $line;
    }

    public function 
closeBlock(): void
    
{
        
$reversed array_reverse($this->strings->toArray(), true);
        foreach (
$reversed as $index => $line) {
            if (
$line !== '' && $line !== "n" && ! preg_match('/^(n *)$/'$line)) {
                break;
            }

            unset(
$reversed[$index]);
        }

        
$fixed array_reverse($reversed);
        
$tmp   implode("n"$fixed);
        if (
substr($tmp, -1) !== "n") {
            
$tmp .= "n";
        }

        
$this->block->setLiteral($tmp);
    }
}
Онлайн: 2
Реклама