1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Expression.php

30 lines
607 B
PHP
Raw Normal View History

2016-12-24 23:52:33 +01:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
/**
* Represents statements of type "expr;"
*/
class Expression extends Node\Stmt
{
/** @var Node\Expr Expression */
public $expr;
/**
* Constructs an expression statement.
*
* @param Node\Expr $expr Expression
* @param array $attributes Additional attributes
*/
public function __construct(Node\Expr $expr, array $attributes = []) {
2016-12-24 23:52:33 +01:00
parent::__construct($attributes);
$this->expr = $expr;
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return ['expr'];
2016-12-24 23:52:33 +01:00
}
}