Searched refs:origTokens (Results 1 – 4 of 4) sorted by relevance
/PHP-Parser/lib/PhpParser/Internal/ |
H A D | TokenPolyfill.php | 130 $origTokens = \token_get_all($code, $flags); 132 $numTokens = \count($origTokens); 134 $token = $origTokens[$i]; 157 if ($i + 1 < $numTokens && $origTokens[$i + 1][0] === \T_WHITESPACE) { 159 $origTokens[$i + 1][1] = $trailingNewline . $origTokens[$i + 1][1]; 160 $origTokens[$i + 1][2]--; 177 if (!isset(self::$identifierTokens[$origTokens[$j][0]])) { 182 if ($origTokens[$j][0] !== \T_NS_SEPARATOR) { 187 $newText .= $origTokens[$j][1];
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinter.php | 48 * @param Token[] $origTokens Tokens of the original code 50 … public function printFormatPreserving(array $stmts, array $origStmts, array $origTokens): string; argument
|
H A D | PrettyPrinterAbstract.php | 133 protected ?TokenStream $origTokens; variable in PhpParser\\PrettyPrinterAbstract 223 $this->origTokens = null; 554 * @param Token[] $origTokens Tokens of the original code 567 $this->origTokens = new TokenStream($origTokens, $this->tabWidth); 574 $result .= $this->origTokens->getTokenCode($pos, count($origTokens) - 1, 0); 605 if (!$this->origTokens) { 679 $pos = $this->origTokens->findRight($pos, $findToken); 804 if (!$this->origTokens->haveBraces($startPos, $endPos)) { 864 $result .= $this->origTokens->getTokenCode( 895 $result .= $this->origTokens->getTokenCode( [all …]
|
/PHP-Parser/test_old/ |
H A D | run.php | 184 $origTokens = $parser->getTokens(); variable 191 $code = $prettyPrinter->printFormatPreserving($stmts, $origStmts, $origTokens);
|
Completed in 11 milliseconds