Same name and namespace in other branches
  1. 6.0.x advagg_js_minify/jsminplus.inc \JSParser::nest() 1 commentaire
  2. 7.x-1.x advagg_js_compress/jsminplus.inc \JSParser::nest() 1 commentaire
  3. 7.x-2.x advagg_js_compress/jsminplus.inc \JSParser::nest() 1 commentaire
  4. 8.x-2.x advagg_js_minify/jsminplus.inc \JSParser::nest() 1 commentaire
  5. 8.x-3.x advagg_js_minify/jsminplus.inc \JSParser::nest() 1 commentaire
  6. 8.x-4.x advagg_js_minify/jsminplus.inc \JSParser::nest() 1 commentaire
1 call to JSParser::nest()
JSParser::Statement dans advagg_js_minify/jsminplus.inc

Fichier

advagg_js_minify/jsminplus.inc, line 1731

Classe

JSParser

Code

private function nest($x, $node, $end = false) {
    array_push($x->stmtStack, $node);
    $n = $this->statement($x);
    array_pop($x->stmtStack);
    if ($end) {
        $this->t
            ->mustMatch($end);
    }
    return $n;
}