You are here

private function JSParser::ParenExpression in Javascript Aggregator 6

1 call to JSParser::ParenExpression()
JSParser::Statement in ./jsminplus.php

File

./jsminplus.php, line 1564

Class

JSParser

Code

private function ParenExpression($x) {
  $this->t
    ->mustMatch(OP_LEFT_PAREN);
  $n = $this
    ->Expression($x);
  $this->t
    ->mustMatch(OP_RIGHT_PAREN);
  return $n;
}