Version 1
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / List_.php
diff --git a/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php b/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php
new file mode 100644 (file)
index 0000000..30f3dc1
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+
+namespace PhpParser\Node\Expr;
+
+use PhpParser\Node\Expr;
+
+class List_ extends Expr
+{
+    /** @var ArrayItem[] List of items to assign to */
+    public $items;
+
+    /**
+     * Constructs a list() destructuring node.
+     *
+     * @param ArrayItem[] $items      List of items to assign to
+     * @param array       $attributes Additional attributes
+     */
+    public function __construct(array $items, array $attributes = array()) {
+        parent::__construct($attributes);
+        $this->items = $items;
+    }
+
+    public function getSubNodeNames() {
+        return array('items');
+    }
+}