private function JSParser::Block in Javascript Aggregator 6
1 call to JSParser::Block()
File
- ./
jsminplus.php, line 781
Class
Code
private function Block($x) {
$this->t
->mustMatch(OP_LEFT_CURLY);
$n = $this
->Statements($x);
$this->t
->mustMatch(OP_RIGHT_CURLY);
return $n;
}