Home
last modified time | relevance | path

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

/PHP-Parser/test/PhpParser/Lexer/
H A DEmulativeTest.php306 [\T_STRING, 'abc'],
313 [\T_STRING, 'Attr'],
318 [\T_STRING, 'Attr'],
327 [\T_STRING, 'Attr'],
332 [\T_STRING, 'Attr'],
341 [\T_STRING, 'Foo'],
347 [\T_STRING, 'Enum'],
355 [\T_STRING, 'X'],
363 [\T_STRING, 'X'],
416 [\T_STRING, 'bar'],
[all …]
/PHP-Parser/test/code/parser/scalar/
H A DnumberSeparators.test24 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 DKeywordEmulator.php24 if ($token->id === T_STRING && strtolower($token->text) === $keywordString
50 $token->id = \T_STRING;
H A DEnumTokenEmulator.php24 && $tokens[$pos + 2]->id === \T_STRING;
H A DExplicitOctalEmulator.php21 isset($tokens[$i + 1]) && $tokens[$i + 1]->id == \T_STRING &&
H A DNullsafeTokenEmulator.php37 new Token(\T_STRING, $matches[1], $token->line, $token->pos + 3),
/PHP-Parser/test/PhpParser/
H A DTokenTest.php33 [\T_STRING, 'foo', false],
44 $token = new Token(\T_STRING, 'foo');
/PHP-Parser/test/code/parser/stmt/class/
H A DreadonlyAsClassName.test6 Syntax error, unexpected T_READONLY, expecting T_STRING from 2:7 to 2:14
H A Dname.test43 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 DinvalidName.test45 Syntax error, unexpected T_STATIC, expecting T_STRING from 1:16 to 1:21
H A DgroupUseErrors.test90 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 Drecovery.test9 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
846 Syntax error, unexpected T_STRING from 5:5 to 5:9
1340 Syntax error, unexpected T_STRING, expecting ',' or ']' or ')' from 2:11 to 2:15
/PHP-Parser/grammar/
H A Dphp.y47 %token T_STRING
164 T_STRING { $$ = Node\Identifier[$1]; }
169 T_STRING { $$ = Node\Identifier[$1]; }
177 T_STRING { $$ = Name[$1]; }
183 T_STRING { $$ = Name[$1]; }
343 T_STRING '=' expr
1123 T_STRING { $$ = Name[$1]; }
1375 T_STRING { $$ = Scalar\String_[$1]; }
/PHP-Parser/lib/PhpParser/Internal/
H A DTokenPolyfill.php225 \T_STRING,
/PHP-Parser/doc/component/
H A DLexer.markdown22 …`T_NAME_RELATIVE` tokens, rather than the previous representation using a sequence of `T_STRING` a…
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php82 public const T_STRING = 317; define in PhpParser\\Parser\\Php7
H A DPhp8.php82 public const T_STRING = 317; define in PhpParser\\Parser\\Php8

Completed in 62 milliseconds