mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
75abbbd2d4
Extend the interface to support preprocessing.
26 lines
615 B
PHP
26 lines
615 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Lexer\TokenEmulator;
|
|
|
|
/** @internal */
|
|
abstract class TokenEmulator
|
|
{
|
|
abstract public function getPhpVersion(): string;
|
|
|
|
abstract public function isEmulationNeeded(string $code): bool;
|
|
|
|
/**
|
|
* @return array Modified Tokens
|
|
*/
|
|
abstract public function emulate(string $code, array $tokens): array;
|
|
|
|
/**
|
|
* @return array Modified Tokens
|
|
*/
|
|
abstract public function reverseEmulate(string $code, array $tokens): array;
|
|
|
|
public function preprocessCode(string $code, array &$patches): string {
|
|
return $code;
|
|
}
|
|
}
|