1 call to JSNode::addNode()
JSNode::__construct dans advagg_js_minify/jsminplus.inc

Fichier

advagg_js_minify/jsminplus.inc, line 1842

Classe

JSNode

Code

public function addNode($node) {
    if ($node !== null) {
        if ($node->start < $this->start) {
            $this->start = $node->start;
        }
        if ($this->end < $node->end) {
            $this->end = $node->end;
        }
    }
    $this->treeNodes[] = $node;
}