Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
byp
/
wp-content
/
plugins
/
wpide
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Lexer
/
TokenEmulator
:
TokenEmulator.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }