You are here

private function JSParser::Block in Javascript Aggregator 6

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

File

./jsminplus.php, line 781

Class

JSParser

Code

private function Block($x) {
  $this->t
    ->mustMatch(OP_LEFT_CURLY);
  $n = $this
    ->Statements($x);
  $this->t
    ->mustMatch(OP_RIGHT_CURLY);
  return $n;
}