class ClassDeclaration
A node that represents a class declaration. For example: class test {}
@author Marco Marchiò <marco.mm89@gmail.com>
Hierarchy
- class \Peast\Syntax\Node\Node implements \Peast\Syntax\Node\JSONSerializable
- class \Peast\Syntax\Node\Class_ extends \Peast\Syntax\Node\Node
- class \Peast\Syntax\Node\ClassDeclaration extends \Peast\Syntax\Node\Class_ implements \Peast\Syntax\Node\Declaration
- class \Peast\Syntax\Node\Class_ extends \Peast\Syntax\Node\Node
Expanded class hierarchy of ClassDeclaration
2 string references to 'ClassDeclaration'
- Parser::parseClassDeclaration in vendor/
mck89/ peast/ lib/ Peast/ Syntax/ Parser.php - Parses a class declaration
- Renderer::renderNode in vendor/
mck89/ peast/ lib/ Peast/ Renderer.php - Renders a node
File
-
vendor/
mck89/ peast/ lib/ Peast/ Syntax/ Node/ ClassDeclaration.php, line 18
Namespace
Peast\Syntax\NodeView source
class ClassDeclaration extends Class_ implements Declaration {
/**
* Sets the class identifier
*
* @param Identifier $id Class identifier
*
* @return $this
*/
public function setId($id) {
$this->assertType($id, "Identifier");
$this->id = $id;
return $this;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
ClassDeclaration::setId | public | function | Sets the class identifier | Overrides Class_::setId | |
Class_::$body | protected | property | Class body | ||
Class_::$id | protected | property | Class name | ||
Class_::$propertiesMap | protected | property | Map of node properties | Overrides Node::$propertiesMap | |
Class_::$superClass | protected | property | Extended class | ||
Class_::getBody | public | function | Returns class body | ||
Class_::getId | public | function | Returns class name | ||
Class_::getSuperClass | public | function | Returns extended class | ||
Class_::setBody | public | function | Sets class body | ||
Class_::setSuperClass | public | function | Sets extended class | ||
Node::$leadingComments | protected | property | Leading comments array | ||
Node::$location | public | property | Node location in the source code | ||
Node::$trailingComments | protected | property | Trailing comments array | ||
Node::assertArrayOf | protected | function | Asserts that the given value is an array of defined type | ||
Node::assertType | protected | function | Asserts that the given value respects the defined type | ||
Node::getLeadingComments | public | function | Returns leading comments array | ||
Node::getLocation | public | function | Returns node location in the source code | ||
Node::getTrailingComments | public | function | Returns trailing comments array | ||
Node::getType | public | function | Returns node type | 2 | |
Node::jsonSerialize | public | function | Returns a serializable version of the node | 2 | |
Node::render | public | function | Renders the current node | ||
Node::setEndPosition | public | function | Sets the end position of the node in the source code | ||
Node::setLeadingComments | public | function | Sets leading comments array | 1 | |
Node::setStartPosition | public | function | Sets the start position of the node in the source code | ||
Node::setTrailingComments | public | function | Sets trailing comments array | 1 | |
Node::traverse | public | function | Traverses the current node and all its child nodes using the given function |
||
Node::typeError | protected | function | Throws an error if the defined type is not supported b | ||
Node::__construct | public | function | Class constructor |