Вход Регистрация
Файл: upload/core/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php
Строк: 60
<?php

/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace TwigTokenParser;

use 
TwigErrorSyntaxError;
use 
TwigNodeDeprecatedNode;
use 
TwigNodeNode;
use 
TwigToken;

/**
 * Deprecates a section of a template.
 *
 *    {% deprecated 'The "base.twig" template is deprecated, use "layout.twig" instead.' %}
 *    {% extends 'layout.html.twig' %}
 *
 *    {% deprecated 'The "base.twig" template is deprecated, use "layout.twig" instead.' package="foo/bar" version="1.1" %}
 *
 * @author Yonel Ceruto <yonelceruto@gmail.com>
 *
 * @internal
 */
final class DeprecatedTokenParser extends AbstractTokenParser
{
    public function 
parse(Token $token): Node
    
{
        
$stream $this->parser->getStream();
        
$expr $this->parser->parseExpression();
        
$node = new DeprecatedNode($expr$token->getLine());

        while (
$stream->test(Token::NAME_TYPE)) {
            
$k $stream->getCurrent()->getValue();
            
$stream->next();
            
$stream->expect(Token::OPERATOR_TYPE'=');

            switch (
$k) {
                case 
'package':
                    
$node->setNode('package'$this->parser->parseExpression());
                    break;
                case 
'version':
                    
$node->setNode('version'$this->parser->parseExpression());
                    break;
                default:
                    throw new 
SyntaxError(sprintf('Unknown "%s" option.'$k), $stream->getCurrent()->getLine(), $stream->getSourceContext());
            }
        }

        
$stream->expect(Token::BLOCK_END_TYPE);

        return 
$node;
    }

    public function 
getTag(): string
    
{
        return 
'deprecated';
    }
}
Онлайн: 5
Реклама