Home
last modified time | relevance | path

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

/PHP-Parser/test/code/parser/
H A DformattingAttributes.test53 kind: KIND_BIN (2)
60 kind: KIND_OCT (8)
67 kind: KIND_DEC (10)
74 kind: KIND_HEX (16)
81 kind: KIND_DEC (10)
164 kind: KIND_NOWDOC (4)
173 kind: KIND_NOWDOC (4)
182 kind: KIND_NOWDOC (4)
192 kind: KIND_HEREDOC (3)
254 kind: KIND_LONG (1)
[all …]
/PHP-Parser/lib/PhpParser/Internal/
H A DTokenPolyfill.php67 * @param int|string|(int|string)[] $kind
69 public function is($kind): bool { argument
70 if (\is_int($kind)) {
71 return $this->id === $kind;
73 if (\is_string($kind)) {
74 return $this->text === $kind;
76 if (\is_array($kind)) {
77 foreach ($kind as $entry) {
95 'Argument #1 ($kind) must be of type string|int|array, ' .gettype($kind) . ' given');
/PHP-Parser/lib/PhpParser/
H A DNodeDumper.php231 private function dumpIntKind(int $kind): string { argument
232 return $this->dumpEnum($kind, [
240 private function dumpStringKind(int $kind): string { argument
241 return $this->dumpEnum($kind, [
249 private function dumpArrayKind(int $kind): string { argument
250 return $this->dumpEnum($kind, [
256 private function dumpListKind(int $kind): string { argument
257 return $this->dumpEnum($kind, [
H A DParserAbstract.php813 $kind = strpos($startToken, "'") === false
825 $attributes['kind'] = $kind;
856 if ($kind === String_::KIND_HEREDOC) {
/PHP-Parser/doc/component/
H A DPretty_printing.markdown34 The pretty printer respects a number of `kind` attributes used by some nodes (e.g., whether an
41 * `shortArraySyntax` determines the used array syntax if the `kind` attribute is not set. This is
47 specify an explicit array syntax using the `kind` attribute.
50 `list()`). This does not affect nodes that specify and explicit syntax using the `kind` attribute.
H A DJSON_representation.markdown108 "kind": 2,
H A DLexer.markdown54 /** @param int|string|(int|string)[] $kind Token ID or text (or array of them) */
55 public function is($kind): bool;
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php140 $kind = $node->getAttribute('kind', Scalar\String_::KIND_SINGLE_QUOTED);
141 switch ($kind) {
206 $kind = $node->getAttribute('kind', Scalar\Int_::KIND_DEC);
207 if (Scalar\Int_::KIND_DEC === $kind) {
218 switch ($kind) {
488 $kind = $node->getAttribute('kind', Cast\Double::KIND_DOUBLE);
489 if ($kind === Cast\Double::KIND_DOUBLE) {
491 } elseif ($kind === Cast\Double::KIND_FLOAT) {
494 assert($kind === Cast\Double::KIND_REAL);
724 $kind = $node->getAttribute('kind', Expr\Exit_::KIND_DIE);
[all …]
/PHP-Parser/
H A DUPGRADE-5.0.md101 Now, destructuring is always represented using `Node\Expr\List_`. The `kind` attribute with value
394 …fault. This does not affect nodes that specify an explicit array syntax using the `kind` attribute.
396 …f `list()`). This does not affect nodes that specify an explicit syntax using the `kind` attribute.
484 public function is(int|string|array $kind): bool;
H A DREADME.md115 Let's traverse the AST and perform some kind of modification. For example, drop all function bodies:
H A DCHANGELOG.md80 * Added support for printing additional attributes (like `kind`) in `NodeDumper`.
599 * Add `kind` attribute to `Cast\Double_`, which allows to distinguish between `(float)`,
835 * Added `kind` attribute for `Stmt\Namespace_` node, which is one of `KIND_SEMICOLON` or
1007 * Nodes and Comments now implement `JsonSerializable`. The node kind is stored in a `nodeType`
1100 * Added `kind` attribute to `Expr\Exit` to distinguish between `exit` and `die`.
1101 * Added `kind` attribute to `Scalar\LNumber` to distinguish between decimal, binary, octal and
1103 * Added `kind` attribute to `Expr\Array` to distinguish between `array()` and `[]`.
1104 * Added `kind` attribute to `Scalar\String` and `Scalar\Encapsed` to distinguish between

Completed in 33 milliseconds