2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2011-09-21 21:43:19 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser;
|
|
|
|
|
2022-08-28 22:57:06 +02:00
|
|
|
interface Node {
|
2011-09-21 21:43:19 +02:00
|
|
|
/**
|
|
|
|
* Gets the type of the node.
|
|
|
|
*
|
2024-04-19 14:04:10 +02:00
|
|
|
* @psalm-return non-empty-string
|
2011-09-21 21:43:19 +02:00
|
|
|
* @return string Type of the node
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getType(): string;
|
2011-09-21 21:43:19 +02:00
|
|
|
|
2011-12-02 17:52:03 +01:00
|
|
|
/**
|
|
|
|
* Gets the names of the sub nodes.
|
|
|
|
*
|
2022-09-11 20:59:20 +02:00
|
|
|
* @return string[] Names of sub nodes
|
2011-12-02 17:52:03 +01:00
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getSubNodeNames(): array;
|
2011-12-02 17:52:03 +01:00
|
|
|
|
2011-09-21 21:43:19 +02:00
|
|
|
/**
|
2017-09-29 17:34:15 +02:00
|
|
|
* Gets line the node started in (alias of getStartLine).
|
2011-09-21 21:43:19 +02:00
|
|
|
*
|
2017-09-29 17:34:15 +02:00
|
|
|
* @return int Start line (or -1 if not available)
|
2024-03-13 11:49:39 +01:00
|
|
|
* @phpstan-return -1|positive-int
|
2023-09-17 16:32:10 +02:00
|
|
|
*
|
|
|
|
* @deprecated Use getStartLine() instead
|
2011-09-21 21:43:19 +02:00
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getLine(): int;
|
2011-09-21 21:43:19 +02:00
|
|
|
|
2017-09-29 17:34:15 +02:00
|
|
|
/**
|
|
|
|
* Gets line the node started in.
|
|
|
|
*
|
|
|
|
* Requires the 'startLine' attribute to be enabled in the lexer (enabled by default).
|
|
|
|
*
|
|
|
|
* @return int Start line (or -1 if not available)
|
2024-03-13 11:49:39 +01:00
|
|
|
* @phpstan-return -1|positive-int
|
2017-09-29 17:34:15 +02:00
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getStartLine(): int;
|
2017-09-29 17:34:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the line the node ended in.
|
|
|
|
*
|
|
|
|
* Requires the 'endLine' attribute to be enabled in the lexer (enabled by default).
|
|
|
|
*
|
|
|
|
* @return int End line (or -1 if not available)
|
2024-03-13 11:49:39 +01:00
|
|
|
* @phpstan-return -1|positive-int
|
2017-09-29 17:34:15 +02:00
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getEndLine(): int;
|
2017-09-29 17:34:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the token offset of the first token that is part of this node.
|
|
|
|
*
|
|
|
|
* The offset is an index into the array returned by Lexer::getTokens().
|
|
|
|
*
|
|
|
|
* Requires the 'startTokenPos' attribute to be enabled in the lexer (DISABLED by default).
|
|
|
|
*
|
|
|
|
* @return int Token start position (or -1 if not available)
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getStartTokenPos(): int;
|
2017-09-29 17:34:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the token offset of the last token that is part of this node.
|
|
|
|
*
|
|
|
|
* The offset is an index into the array returned by Lexer::getTokens().
|
|
|
|
*
|
|
|
|
* Requires the 'endTokenPos' attribute to be enabled in the lexer (DISABLED by default).
|
|
|
|
*
|
|
|
|
* @return int Token end position (or -1 if not available)
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getEndTokenPos(): int;
|
2017-09-29 17:34:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the file offset of the first character that is part of this node.
|
|
|
|
*
|
|
|
|
* Requires the 'startFilePos' attribute to be enabled in the lexer (DISABLED by default).
|
|
|
|
*
|
|
|
|
* @return int File start position (or -1 if not available)
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getStartFilePos(): int;
|
2017-09-29 17:34:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the file offset of the last character that is part of this node.
|
|
|
|
*
|
|
|
|
* Requires the 'endFilePos' attribute to be enabled in the lexer (DISABLED by default).
|
|
|
|
*
|
|
|
|
* @return int File end position (or -1 if not available)
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getEndFilePos(): int;
|
2017-09-29 17:34:15 +02:00
|
|
|
|
2017-09-29 17:09:16 +02:00
|
|
|
/**
|
|
|
|
* Gets all comments directly preceding this node.
|
|
|
|
*
|
|
|
|
* The comments are also available through the "comments" attribute.
|
|
|
|
*
|
|
|
|
* @return Comment[]
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getComments(): array;
|
2017-09-29 17:09:16 +02:00
|
|
|
|
2011-09-21 21:43:19 +02:00
|
|
|
/**
|
2012-05-06 18:24:26 +02:00
|
|
|
* Gets the doc comment of the node.
|
2011-09-21 21:43:19 +02:00
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return null|Comment\Doc Doc comment object or null
|
2011-11-06 17:07:38 +01:00
|
|
|
*/
|
2022-06-04 12:48:12 +02:00
|
|
|
public function getDocComment(): ?Comment\Doc;
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2016-10-21 20:04:55 +02:00
|
|
|
/**
|
|
|
|
* Sets the doc comment of the node.
|
|
|
|
*
|
|
|
|
* This will either replace an existing doc comment or add it to the comments array.
|
|
|
|
*
|
|
|
|
* @param Comment\Doc $docComment Doc comment to set
|
|
|
|
*/
|
2022-09-11 17:51:59 +02:00
|
|
|
public function setDocComment(Comment\Doc $docComment): void;
|
2016-10-21 20:04:55 +02:00
|
|
|
|
2012-04-03 13:04:24 -05:00
|
|
|
/**
|
|
|
|
* Sets an attribute on a node.
|
|
|
|
*
|
2023-09-17 15:59:04 +02:00
|
|
|
* @param mixed $value
|
2012-04-03 13:04:24 -05:00
|
|
|
*/
|
2022-09-11 17:51:59 +02:00
|
|
|
public function setAttribute(string $key, $value): void;
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 13:04:24 -05:00
|
|
|
/**
|
|
|
|
* Returns whether an attribute exists.
|
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function hasAttribute(string $key): bool;
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 13:04:24 -05:00
|
|
|
/**
|
|
|
|
* Returns the value of an attribute.
|
|
|
|
*
|
2023-09-17 15:59:04 +02:00
|
|
|
* @param mixed $default
|
2012-04-03 13:04:24 -05:00
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-09-29 17:14:27 +02:00
|
|
|
public function getAttribute(string $key, $default = null);
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 13:04:24 -05:00
|
|
|
/**
|
2017-05-05 18:18:44 +02:00
|
|
|
* Returns all the attributes of this node.
|
2012-04-03 13:04:24 -05:00
|
|
|
*
|
2022-09-11 20:59:20 +02:00
|
|
|
* @return array<string, mixed>
|
2012-04-03 13:04:24 -05:00
|
|
|
*/
|
2022-08-28 22:57:06 +02:00
|
|
|
public function getAttributes(): array;
|
2017-05-05 18:18:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces all the attributes of this node.
|
|
|
|
*
|
2022-09-11 20:51:31 +02:00
|
|
|
* @param array<string, mixed> $attributes
|
2017-05-05 18:18:44 +02:00
|
|
|
*/
|
2022-09-11 17:51:59 +02:00
|
|
|
public function setAttributes(array $attributes): void;
|
2017-05-05 18:18:44 +02:00
|
|
|
}
|