private function JSParser::ParenExpression in Javascript Aggregator 6
1 call to JSParser::ParenExpression()
File
- ./
jsminplus.php, line 1564
Class
Code
private function ParenExpression($x) {
$this->t
->mustMatch(OP_LEFT_PAREN);
$n = $this
->Expression($x);
$this->t
->mustMatch(OP_RIGHT_PAREN);
return $n;
}