Searched refs:T_VARIABLE (Results 1 – 8 of 8) sorted by relevance
/PHP-Parser/test/code/parser/errorHandling/ |
H A D | recovery.test | 171 Syntax error, unexpected T_VARIABLE, expecting '(' from 6:1 to 6:2 369 Syntax error, unexpected EOF, expecting T_VARIABLE or '{' or '$' from 2:2 to 2:2 382 Syntax error, unexpected EOF, expecting T_VARIABLE or '{' or '$' from 2:7 to 2:7 965 Syntax error, unexpected ')', expecting T_VARIABLE from 3:18 to 3:18 966 Syntax error, unexpected ')', expecting T_VARIABLE from 7:31 to 7:31 967 Syntax error, unexpected ')', expecting T_VARIABLE from 11:17 to 11:17 969 Syntax error, unexpected ')', expecting T_VARIABLE from 19:17 to 19:17 970 Syntax error, unexpected ')', expecting T_VARIABLE from 22:21 to 22:21 971 Syntax error, unexpected ')', expecting T_VARIABLE from 25:13 to 25:13 1230 Syntax error, unexpected T_VARIABLE, expecting ',' or ']' or ')' from 3:18 to 3:34 [all …]
|
/PHP-Parser/lib/PhpParser/Lexer/TokenEmulator/ |
H A D | NullsafeTokenEmulator.php | 32 && $tokens[$i - 1]->id === \T_VARIABLE
|
/PHP-Parser/lib/PhpParser/ |
H A D | Lexer.php | 95 $tokens[$next]->is([\T_VARIABLE, \T_ELLIPSIS]);
|
H A D | PrettyPrinterAbstract.php | 1484 'Stmt_Property->type' => [\T_VARIABLE, true, null, ' '], 1678 Stmt\Property::class . '->flags' => ['pModifiers', \T_VARIABLE], 1680 Param::class . '->flags' => ['pModifiers', \T_VARIABLE],
|
/PHP-Parser/test/PhpParser/Lexer/ |
H A D | EmulativeTest.php | 448 [\T_VARIABLE, '$foo'], 455 [\T_VARIABLE, '$foo'],
|
/PHP-Parser/grammar/ |
H A D | php.y | 49 %token T_VARIABLE 197 T_VARIABLE { $$ = Expr\Variable[parseVar($1)]; } 936 …T_VARIABLE { $$ = Node\VarLikeIdentifier[parseVar($1)];…
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 84 public const T_VARIABLE = 319; define in PhpParser\\Parser\\Php7
|
H A D | Php8.php | 84 public const T_VARIABLE = 319; define in PhpParser\\Parser\\Php8
|
Completed in 35 milliseconds