Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ExplicitOctalEmulator.php

class ExplicitOctalEmulator

Hierarchy

  • class \PhpParser\Lexer\TokenEmulator\TokenEmulator
    • class \PhpParser\Lexer\TokenEmulator\ExplicitOctalEmulator extends \PhpParser\Lexer\TokenEmulator\TokenEmulator

Expanded class hierarchy of ExplicitOctalEmulator

1 file declares its use of ExplicitOctalEmulator
Emulative.php in vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php

File

vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php, line 8

Namespace

PhpParser\Lexer\TokenEmulator
View source
class ExplicitOctalEmulator extends TokenEmulator {
    public function getPhpVersion() : PhpVersion {
        return PhpVersion::fromComponents(8, 1);
    }
    public function isEmulationNeeded(string $code) : bool {
        return strpos($code, '0o') !== false || strpos($code, '0O') !== false;
    }
    public function emulate(string $code, array $tokens) : array {
        for ($i = 0, $c = count($tokens); $i < $c; ++$i) {
            $token = $tokens[$i];
            if ($token->id == \T_LNUMBER && $token->text === '0' && isset($tokens[$i + 1]) && $tokens[$i + 1]->id == \T_STRING && preg_match('/[oO][0-7]+(?:_[0-7]+)*/', $tokens[$i + 1]->text)) {
                $tokenKind = $this->resolveIntegerOrFloatToken($tokens[$i + 1]->text);
                array_splice($tokens, $i, 2, [
                    new Token($tokenKind, '0' . $tokens[$i + 1]->text, $token->line, $token->pos),
                ]);
                $c--;
            }
        }
        return $tokens;
    }
    private function resolveIntegerOrFloatToken(string $str) : int {
        $str = substr($str, 1);
        $str = str_replace('_', '', $str);
        $num = octdec($str);
        return is_float($num) ? \T_DNUMBER : \T_LNUMBER;
    }
    public function reverseEmulate(string $code, array $tokens) : array {
        // Explicit octals were not legal code previously, don't bother.
        return $tokens;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
ExplicitOctalEmulator::emulate public function Overrides TokenEmulator::emulate
ExplicitOctalEmulator::getPhpVersion public function Overrides TokenEmulator::getPhpVersion
ExplicitOctalEmulator::isEmulationNeeded public function Overrides TokenEmulator::isEmulationNeeded
ExplicitOctalEmulator::resolveIntegerOrFloatToken private function
ExplicitOctalEmulator::reverseEmulate public function Overrides TokenEmulator::reverseEmulate
TokenEmulator::preprocessCode public function 2

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal