/PHP-Parser/test/PhpParser/Lexer/ |
H A D | EmulativeTest.php | 309 [\T_STRING, 'abc'], 316 [\T_STRING, 'Attr'], 344 [\T_STRING, 'Foo'], 358 [\T_STRING, 'X'], 366 [\T_STRING, 'X'], 410 [\T_STRING, 'set'], 417 [\T_STRING, 'set'], 424 [\T_STRING, 'set'], 450 [\T_STRING, 'bar'], 457 [\T_STRING, 'bar'], [all …]
|
/PHP-Parser/test/code/parser/scalar/ |
H A D | numberSeparators.test | 24 Syntax error, unexpected T_STRING from 13:4 to 13:4 25 Syntax error, unexpected T_STRING from 14:2 to 14:4 26 Syntax error, unexpected T_STRING from 15:2 to 15:2 27 Syntax error, unexpected T_STRING from 16:3 to 16:4 28 Syntax error, unexpected T_STRING from 17:2 to 17:6 29 Syntax error, unexpected T_STRING from 18:2 to 18:6 30 Syntax error, unexpected T_STRING from 19:2 to 19:4 31 Syntax error, unexpected T_STRING from 20:2 to 20:4
|
/PHP-Parser/lib/PhpParser/Lexer/TokenEmulator/ |
H A D | KeywordEmulator.php | 28 if ($token->id === T_STRING && strtolower($token->text) === $keywordString 54 $token->id = \T_STRING;
|
H A D | EnumTokenEmulator.php | 24 && $tokens[$pos + 2]->id === \T_STRING;
|
H A D | AsymmetricVisibilityTokenEmulator.php | 28 $tokens[$i + 2]->id === \T_STRING && \strtolower($tokens[$i + 2]->text) === 'set' && 60 new Token(\T_STRING, $set, $token->line, $token->pos + $modifierLen + 1),
|
H A D | ExplicitOctalEmulator.php | 21 isset($tokens[$i + 1]) && $tokens[$i + 1]->id == \T_STRING &&
|
H A D | NullsafeTokenEmulator.php | 37 new Token(\T_STRING, $matches[1], $token->line, $token->pos + 3),
|
/PHP-Parser/test/PhpParser/ |
H A D | TokenTest.php | 33 [\T_STRING, 'foo', false], 44 $token = new Token(\T_STRING, 'foo');
|
/PHP-Parser/test/code/parser/stmt/class/ |
H A D | readonlyAsClassName.test | 6 Syntax error, unexpected T_READONLY, expecting T_STRING from 2:7 to 2:14
|
H A D | name.test | 43 Syntax error, unexpected T_STATIC, expecting T_STRING from 1:13 to 1:18 216 Syntax error, unexpected T_STATIC, expecting T_STRING from 1:17 to 1:22
|
/PHP-Parser/test/code/parser/stmt/namespace/ |
H A D | invalidName.test | 45 Syntax error, unexpected T_STATIC, expecting T_STRING from 1:16 to 1:21
|
H A D | groupUseErrors.test | 90 Syntax error, unexpected T_NAME_FULLY_QUALIFIED, expecting T_STRING or T_FUNCTION or T_CONST or T_N…
|
/PHP-Parser/test/code/parser/errorHandling/ |
H A D | recovery.test | 9 Syntax error, unexpected T_STRING from 4:1 to 4:3 10 Syntax error, unexpected T_STRING from 5:1 to 5:3 48 Syntax error, unexpected T_STRING from 4:1 to 4:3 85 Syntax error, unexpected T_STRING from 5:1 to 5:3 273 Syntax error, unexpected ';', expecting T_STRING or T_VARIABLE or '{' or '$' from 3:1 to 3:1 292 Syntax error, unexpected '}', expecting T_STRING or T_VARIABLE or '{' or '$' from 4:1 to 4:1 848 Syntax error, unexpected T_STRING from 5:5 to 5:9 1362 Syntax error, unexpected T_STRING, expecting ',' or ']' or ')' from 2:11 to 2:15
|
/PHP-Parser/grammar/ |
H A D | php.y | 47 %token T_STRING 168 T_STRING { $$ = Node\Identifier[$1]; } 173 T_STRING { $$ = Node\Identifier[$1]; } 181 T_STRING { $$ = Name[$1]; } 187 T_STRING { $$ = Name[$1]; } 347 T_STRING '=' expr 1169 T_STRING { $$ = Name[$1]; } 1421 T_STRING { $$ = Scalar\String_[$1]; }
|
/PHP-Parser/lib/PhpParser/Internal/ |
H A D | TokenPolyfill.php | 225 \T_STRING,
|
/PHP-Parser/doc/component/ |
H A D | Lexer.markdown | 22 …`T_NAME_RELATIVE` tokens, rather than the previous representation using a sequence of `T_STRING` a…
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 1681 PropertyHook::class . '->flags' => ['pModifiers', \T_STRING],
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 82 public const T_STRING = 317; define in PhpParser\\Parser\\Php7
|
H A D | Php8.php | 82 public const T_STRING = 317; define in PhpParser\\Parser\\Php8
|