Same name in other branches
- 5.0.x advagg_js_minify/jsminplus.inc \JSParser::nest()
- 6.0.x advagg_js_minify/jsminplus.inc \JSParser::nest()
- 7.x-1.x advagg_js_compress/jsminplus.inc \JSParser::nest()
- 8.x-2.x advagg_js_minify/jsminplus.inc \JSParser::nest()
- 8.x-3.x advagg_js_minify/jsminplus.inc \JSParser::nest()
- 8.x-4.x advagg_js_minify/jsminplus.inc \JSParser::nest()
1 call to JSParser::nest()
- JSParser::Statement in advagg_js_compress/
jsminplus.inc
File
-
advagg_js_compress/
jsminplus.inc, line 1731
Class
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;
}