tokens = $tokens; $this->index = $index; if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== Lexer::TOKEN_HORIZONTAL_WS) { return; } $this->index++; } public function currentTokenValue(): string { return $this->tokens[$this->index][Lexer::VALUE_OFFSET]; } public function currentTokenType(): int { return $this->tokens[$this->index][Lexer::TYPE_OFFSET]; } public function currentTokenOffset(): int { $offset = 0; for ($i = 0; $i < $this->index; $i++) { $offset += strlen($this->tokens[$i][Lexer::VALUE_OFFSET]); } return $offset; } public function isCurrentTokenValue(string $tokenValue): bool { return $this->tokens[$this->index][Lexer::VALUE_OFFSET] === $tokenValue; } public function isCurrentTokenType(int ...$tokenType): bool { return in_array($this->tokens[$this->index][Lexer::TYPE_OFFSET], $tokenType, true); } public function isPrecededByHorizontalWhitespace(): bool { return ($this->tokens[$this->index - 1][Lexer::TYPE_OFFSET] ?? -1) === Lexer::TOKEN_HORIZONTAL_WS; } /** * @throws ParserException */ public function consumeTokenType(int $tokenType): void { if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== $tokenType) { $this->throwError($tokenType); } $this->index++; if (($this->tokens[$this->index][Lexer::TYPE_OFFSET] ?? -1) !== Lexer::TOKEN_HORIZONTAL_WS) { return; } $this->index++; } /** * @throws ParserException */ public function consumeTokenValue(int $tokenType, string $tokenValue): void { if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== $tokenType || $this->tokens[$this->index][Lexer::VALUE_OFFSET] !== $tokenValue) { $this->throwError($tokenType, $tokenValue); } $this->index++; if (($this->tokens[$this->index][Lexer::TYPE_OFFSET] ?? -1) !== Lexer::TOKEN_HORIZONTAL_WS) { return; } $this->index++; } /** @phpstan-impure */ public function tryConsumeTokenValue(string $tokenValue): bool { if ($this->tokens[$this->index][Lexer::VALUE_OFFSET] !== $tokenValue) { return false; } $this->index++; if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] === Lexer::TOKEN_HORIZONTAL_WS) { $this->index++; } return true; } /** @phpstan-impure */ public function tryConsumeTokenType(int $tokenType): bool { if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== $tokenType) { return false; } $this->index++; if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] === Lexer::TOKEN_HORIZONTAL_WS) { $this->index++; } return true; } public function getSkippedHorizontalWhiteSpaceIfAny(): string { if ($this->index > 0 && $this->tokens[$this->index - 1][Lexer::TYPE_OFFSET] === Lexer::TOKEN_HORIZONTAL_WS) { return $this->tokens[$this->index - 1][Lexer::VALUE_OFFSET]; } return ''; } /** @phpstan-impure */ public function joinUntil(int ...$tokenType): string { $s = ''; while (!in_array($this->tokens[$this->index][Lexer::TYPE_OFFSET], $tokenType, true)) { $s .= $this->tokens[$this->index++][Lexer::VALUE_OFFSET]; } return $s; } public function next(): void { $this->index++; if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== Lexer::TOKEN_HORIZONTAL_WS) { return; } $this->index++; } /** @phpstan-impure */ public function forwardToTheEnd(): void { $lastToken = count($this->tokens) - 1; $this->index = $lastToken; } public function pushSavePoint(): void { $this->savePoints[] = $this->index; } public function dropSavePoint(): void { array_pop($this->savePoints); } public function rollback(): void { $index = array_pop($this->savePoints); assert($index !== null); $this->index = $index; } /** * @throws ParserException */ private function throwError(int $expectedTokenType, ?string $expectedTokenValue = null): void { throw new ParserException( $this->currentTokenValue(), $this->currentTokenType(), $this->currentTokenOffset(), $expectedTokenType, $expectedTokenValue ); } } __halt_compiler();----SIGNATURE:----feX3DoXTHzpyW1ECOqmV9Bb6tNjtRzCYa5BoKNAkH2RuYieuqXJz2WpJkbtDoq/JvngQKlpsqsNMmQVPmqC2Wz526aTPPpD40O9leQ5JKSrnPQ3JV/qzu1MTak3didKea5DtUZ0cInItt3KbNTqgbAcGuypXdko8OLuEHY2zAGUhDTI0HNxAnvpDpWXSEhSNcBxy9W+GNZE8f+qVmDka9aCogLIs06sTjOHKM/JLcpNNp6G2EX6DtKzrijHuGyB1ZAjLGbv7SYH/k8opswtX44WL9NBpUVs6bAdSYRQ+gPVRWIX+Hzmb2/cdyWIZtU04AY1wd1FfiC4Yo4aQ8hLXe/N1xdlaLhms4BbfDB0yFXtOufUAeDY9qVdP1Q0nhYlwZjugpliNBSbdx86hujk4jg6gD7ExkDK2udlVEoKfKN2WhBqxD5iqxsiIAPv3lIaUTVKuUF88gaaaH8o4x3pEd65ub5S6fRB6go0HqbkBA6VNsSXwbW9R/pAS6e5I56/B8nsIK0eIcRBV//mULRZIpETerYEe5EJ3746vqYBtGT+HfRejeL3EuAKiiBjvEC2yf4boDcinNMHWsuEbrSdkEmfv0UlpSW6nws++I3BZgp1+CzYH2vwQjS/NzHBQjrboJ3HS1ELKwUJI9bD6Ut2MpuWVDF8SC5lEvsM0hWyWdV4=----ATTACHMENT:----MjA3MjQ4MDgyMTg0MjQ1MCAxNjIyODM0MDM2NTg4NDg1IDI2MjU4MTkyNDA1MzMxODQ=