PluginProbe
SQLite Database Integration / trunk
SQLite Database Integration vtrunk
3.0.2 3.0.1 trunk 2.1.13 2.1.14 2.1.15 2.1.16 2.2.0 2.2.1 2.2.10 2.2.11 2.2.12 2.2.13 2.2.14 2.2.15 2.2.16 2.2.17 2.2.18 2.2.19 2.2.2 2.2.20 2.2.21 2.2.22 2.2.23 2.2.3 All 32 releases
← All changes | wp-includes/database/parser/class-wp-parser-node.php +3 -1 2.2.21trunk View file →
@@ -7,8 +7,10 @@
7 7 * A node corresponds to the related grammar rule that was matched by the parser.
8 8 * Each node can contain children, consisting of other nodes and grammar tokens.
9 9 * In this way, a parser node constitutes a recursive structure that represents
10 10 * a parse (sub)tree at each level of the full grammar tree.
11 + *
12 + * @access private
11 13 */
12 14 class WP_Parser_Node {
13 15 /**
14 16 * @TODO: Review and document these properties and their visibility.
@@ -14,9 +16,9 @@
14 16 * @TODO: Review and document these properties and their visibility.
15 17 */
16 18 public $rule_id;
17 19 public $rule_name;
18 - private $children = array();
20 + protected $children = array();
19 21
20 22 public function __construct( $rule_id, $rule_name ) {
21 23 $this->rule_id = $rule_id;
22 24 $this->rule_name = $rule_name;