1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Fix closure compiler warnings.

This commit is contained in:
Ben Browitt 2012-10-31 17:31:46 +02:00
parent b47e4b8855
commit 19faf4b9eb

View file

@ -702,8 +702,8 @@ var PostScriptParser = (function PostScriptParserClosure() {
function PostScriptParser(lexer) {
this.lexer = lexer;
this.operators = [];
this.token;
this.prev;
this.token = null;
this.prev = null;
}
PostScriptParser.prototype = {
nextToken: function PostScriptParser_nextToken() {