Home
last modified time | relevance | path

Searched refs:skipTokenType (Results 1 – 1 of 1) sorted by relevance

/PHP-Parser/lib/PhpParser/Internal/
H A DTokenStream.php101 /** @param int|string|(int|string)[] $skipTokenType */
102 public function skipLeft(int $pos, $skipTokenType): int { argument
106 if ($skipTokenType === \T_WHITESPACE) {
110 if (!$tokens[$pos]->is($skipTokenType)) {
119 /** @param int|string|(int|string)[] $skipTokenType */
120 public function skipRight(int $pos, $skipTokenType): int { argument
124 if ($skipTokenType === \T_WHITESPACE) {
128 if (!$tokens[$pos]->is($skipTokenType)) {

Completed in 3 milliseconds