You are here

private function JSParser::ParenExpression in Advanced CSS/JS Aggregation 8.4

Same name and namespace in other branches
  1. 8.2 advagg_js_minify/jsminplus.inc \JSParser::ParenExpression()
  2. 8.3 advagg_js_minify/jsminplus.inc \JSParser::ParenExpression()
  3. 6 advagg_js_compress/jsminplus.inc \JSParser::ParenExpression()
  4. 7.2 advagg_js_compress/jsminplus.inc \JSParser::ParenExpression()
  5. 7 advagg_js_compress/jsminplus.inc \JSParser::ParenExpression()
1 call to JSParser::ParenExpression()
JSParser::Statement in advagg_js_minify/jsminplus.inc

File

advagg_js_minify/jsminplus.inc, line 1722
JSMinPlus version 1.4

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;
}