1 call to JSParser::ParenExpression()
- JSParser::Statement dans advagg_js_minify/
jsminplus.inc
Fichier
-
advagg_js_minify/
jsminplus.inc, line 1722
Classe
Code
private function ParenExpression($x) {
$this->t
->mustMatch(OP_LEFT_PAREN);
$n = $this->Expression($x);
$this->t
->mustMatch(OP_RIGHT_PAREN);
return $n;
}