public function JSTokenizer::unget in Javascript Aggregator 6
2 calls to JSTokenizer::unget()
File
- ./
jsminplus.php, line 2064
Class
Code
public function unget() {
if (++$this->lookahead == 4) {
throw $this
->newSyntaxError('PANIC: too much lookahead!');
}
$this->tokenIndex = $this->tokenIndex - 1 & 3;
}