2021-02-15 21:29:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-07-07 22:33:10 +02:00
|
|
|
* @private
|
2021-02-15 21:29:38 +01:00
|
|
|
*/
|
|
|
|
class Less_Visitor {
|
|
|
|
|
2023-07-07 22:33:10 +02:00
|
|
|
protected $methods = [];
|
|
|
|
protected $_visitFnCache = [];
|
2021-02-15 21:29:38 +01:00
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->_visitFnCache = get_class_methods( get_class( $this ) );
|
|
|
|
$this->_visitFnCache = array_flip( $this->_visitFnCache );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function visitObj( $node ) {
|
2023-07-07 22:33:10 +02:00
|
|
|
$funcName = 'visit' . $node->type;
|
2021-02-15 21:29:38 +01:00
|
|
|
if ( isset( $this->_visitFnCache[$funcName] ) ) {
|
|
|
|
|
|
|
|
$visitDeeper = true;
|
|
|
|
$this->$funcName( $node, $visitDeeper );
|
|
|
|
|
|
|
|
if ( $visitDeeper ) {
|
|
|
|
$node->accept( $this );
|
|
|
|
}
|
|
|
|
|
2023-07-07 22:33:10 +02:00
|
|
|
$funcName .= "Out";
|
2021-02-15 21:29:38 +01:00
|
|
|
if ( isset( $this->_visitFnCache[$funcName] ) ) {
|
|
|
|
$this->$funcName( $node );
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$node->accept( $this );
|
|
|
|
}
|
|
|
|
|
|
|
|
return $node;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function visitArray( $nodes ) {
|
2023-07-07 22:33:10 +02:00
|
|
|
foreach ( $nodes as $node ) {
|
|
|
|
$this->visitObj( $node );
|
|
|
|
}
|
2021-02-15 21:29:38 +01:00
|
|
|
return $nodes;
|
|
|
|
}
|
|
|
|
}
|