3 calls to JSParser::Statements()
JSParser::Block in advagg_js_minify/jsminplus.inc
JSParser::Script in advagg_js_minify/jsminplus.inc
JSParser::Statement in advagg_js_minify/jsminplus.inc

File

advagg_js_minify/jsminplus.inc, line 906

Class

JSParser

Code

private function Statements($x) {
    $n = new JSNode($this->t, JS_BLOCK);
    array_push($x->stmtStack, $n);
    while (!$this->t
        ->isDone() && $this->t
        ->peek() != OP_RIGHT_CURLY) {
        $n->addNode($this->Statement($x));
    }
    array_pop($x->stmtStack);
    return $n;
}