Mercurial > hg > isophonics-drupal-site
annotate vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php @ 1:1a348b17ec81
Logo and header background
author | Chris Cannam |
---|---|
date | Thu, 30 Nov 2017 14:56:35 +0000 |
parents | 4c8ae668cc8c |
children | 5fb285c0d0e3 |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 |
Chris@0 | 3 namespace PhpParser\Node\Expr; |
Chris@0 | 4 |
Chris@0 | 5 use PhpParser\Node\Expr; |
Chris@0 | 6 |
Chris@0 | 7 class ArrayItem extends Expr |
Chris@0 | 8 { |
Chris@0 | 9 /** @var null|Expr Key */ |
Chris@0 | 10 public $key; |
Chris@0 | 11 /** @var Expr Value */ |
Chris@0 | 12 public $value; |
Chris@0 | 13 /** @var bool Whether to assign by reference */ |
Chris@0 | 14 public $byRef; |
Chris@0 | 15 |
Chris@0 | 16 /** |
Chris@0 | 17 * Constructs an array item node. |
Chris@0 | 18 * |
Chris@0 | 19 * @param Expr $value Value |
Chris@0 | 20 * @param null|Expr $key Key |
Chris@0 | 21 * @param bool $byRef Whether to assign by reference |
Chris@0 | 22 * @param array $attributes Additional attributes |
Chris@0 | 23 */ |
Chris@0 | 24 public function __construct(Expr $value, Expr $key = null, $byRef = false, array $attributes = array()) { |
Chris@0 | 25 parent::__construct($attributes); |
Chris@0 | 26 $this->key = $key; |
Chris@0 | 27 $this->value = $value; |
Chris@0 | 28 $this->byRef = $byRef; |
Chris@0 | 29 } |
Chris@0 | 30 |
Chris@0 | 31 public function getSubNodeNames() { |
Chris@0 | 32 return array('key', 'value', 'byRef'); |
Chris@0 | 33 } |
Chris@0 | 34 } |