mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-10 10:15:37 +02:00
Fix closure compiler warnings.
This commit is contained in:
parent
b47e4b8855
commit
19faf4b9eb
1 changed files with 2 additions and 2 deletions
|
@ -702,8 +702,8 @@ var PostScriptParser = (function PostScriptParserClosure() {
|
||||||
function PostScriptParser(lexer) {
|
function PostScriptParser(lexer) {
|
||||||
this.lexer = lexer;
|
this.lexer = lexer;
|
||||||
this.operators = [];
|
this.operators = [];
|
||||||
this.token;
|
this.token = null;
|
||||||
this.prev;
|
this.prev = null;
|
||||||
}
|
}
|
||||||
PostScriptParser.prototype = {
|
PostScriptParser.prototype = {
|
||||||
nextToken: function PostScriptParser_nextToken() {
|
nextToken: function PostScriptParser_nextToken() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue