1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-13 18:07:32 +01:00
PHP-Parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulatorInterface.php

18 lines
344 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace PhpParser\Lexer\TokenEmulator;
use PhpParser\Token;
/** @internal */
interface TokenEmulatorInterface
{
public function isEmulationNeeded(string $code): bool;
/**
* @param Token[] $tokens
* @return Token[]
*/
public function emulate(string $code, array $tokens): array;
}