Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15404490
D12286.id29510.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D12286.id29510.diff
View Options
diff --git a/src/parser/aast/api/AASTNodeList.php b/src/parser/aast/api/AASTNodeList.php
--- a/src/parser/aast/api/AASTNodeList.php
+++ b/src/parser/aast/api/AASTNodeList.php
@@ -1,62 +1,21 @@
<?php
-final class AASTNodeList implements Iterator, Countable {
+final class AASTNodeList implements Countable, Iterator {
protected $list;
protected $tree;
protected $ids;
protected $pos;
- public function count() {
- return count($this->ids);
- }
-
- public function current() {
- return $this->list[$this->key()];
- }
-
- public function rewind() {
- $this->pos = 0;
- }
-
- public function valid() {
- return $this->pos < count($this->ids);
- }
-
- public function next() {
- $this->pos++;
- }
-
- public function key() {
- return $this->ids[$this->pos];
- }
-
- public static function newFromTreeAndNodes(AASTTree $tree, array $nodes) {
- assert_instances_of($nodes, 'AASTNode');
- $obj = new AASTNodeList();
- $obj->tree = $tree;
- $obj->list = $nodes;
- $obj->ids = array_keys($nodes);
- return $obj;
- }
-
- public static function newFromTree(AASTTree $tree) {
- $obj = new AASTNodeList();
- $obj->tree = $tree;
- $obj->list = array(0 => $tree->getRootNode());
- $obj->ids = array(0 => 0);
- return $obj;
- }
-
protected function __construct() {}
public function getDescription() {
if (empty($this->list)) {
- return 'an empty node list';
+ return pht('an empty node list');
}
$desc = array();
- $desc[] = 'a list of '.count($this->list).' nodes:';
+ $desc[] = pht('a list of %s nodes:', new PhutilNumber(count($this->list)));
foreach ($this->list as $node) {
$desc[] = ' '.$node->getDescription().';';
}
@@ -64,12 +23,8 @@
return implode("\n", $desc);
}
-
-
protected function newList(array $nodes) {
- return AASTNodeList::newFromTreeAndNodes(
- $this->tree,
- $nodes);
+ return AASTNodeList::newFromTreeAndNodes($this->tree, $nodes);
}
public function selectDescendantsOfType($type_name) {
@@ -107,7 +62,6 @@
return $this;
}
-
protected function executeSelectDescendantsOfType($node, $type) {
$results = array();
foreach ($node->getChildren() as $id => $child) {
@@ -132,4 +86,52 @@
return $this->list;
}
+ public static function newFromTreeAndNodes(AASTTree $tree, array $nodes) {
+ assert_instances_of($nodes, 'AASTNode');
+
+ $obj = new AASTNodeList();
+ $obj->tree = $tree;
+ $obj->list = $nodes;
+ $obj->ids = array_keys($nodes);
+ return $obj;
+ }
+
+ public static function newFromTree(AASTTree $tree) {
+ $obj = new AASTNodeList();
+ $obj->tree = $tree;
+ $obj->list = array(0 => $tree->getRootNode());
+ $obj->ids = array(0 => 0);
+ return $obj;
+ }
+
+
+/* -( Countable )---------------------------------------------------------- */
+
+ public function count() {
+ return count($this->ids);
+ }
+
+
+/* -( Iterator )----------------------------------------------------------- */
+
+ public function current() {
+ return $this->list[$this->key()];
+ }
+
+ public function key() {
+ return $this->ids[$this->pos];
+ }
+
+ public function next() {
+ $this->pos++;
+ }
+
+ public function rewind() {
+ $this->pos = 0;
+ }
+
+ public function valid() {
+ return $this->pos < count($this->ids);
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 19, 7:57 AM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7343325
Default Alt Text
D12286.id29510.diff (3 KB)
Attached To
Mode
D12286: Minor tidying of AASTNodeList
Attached
Detach File
Event Timeline
Log In to Comment