mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 02:17:56 +01:00
caa5c0cc76
Nearly all special errors are now handled gracefully, i.e. the parser will be able to continue after encountering them. In some cases the associated error range has been improved using the new end attribute stack. To achieve this the error handling code has been moved out of the node constructors and into special methods in the parser.
33 lines
1001 B
PHP
33 lines
1001 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\Error;
|
|
|
|
class Interface_ extends ClassLike
|
|
{
|
|
/** @var Node\Name[] Extended interfaces */
|
|
public $extends;
|
|
|
|
/**
|
|
* Constructs a class node.
|
|
*
|
|
* @param string $name Name
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
* 'extends' => array(): Name of extended interfaces
|
|
* 'stmts' => array(): Statements
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, array $subNodes = array(), array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->name = $name;
|
|
$this->extends = isset($subNodes['extends']) ? $subNodes['extends'] : array();
|
|
$this->stmts = isset($subNodes['stmts']) ? $subNodes['stmts'] : array();
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('name', 'extends', 'stmts');
|
|
}
|
|
}
|