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

Breadcrumb

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

function Lexer::skipUntil

Parameters

int $token:

Return value

void

1 call to Lexer::skipUntil()
Lexer::lex in vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php

File

vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php, line 210

Class

Lexer
Lexer class

Namespace

Seld\JsonLint

Code

private function skipUntil($token) {
    $symbol = $this->next();
    while ($symbol !== $token && false === $this->done) {
        $symbol = $this->next();
    }
}
RSS feed
Powered by Drupal