Merge pull request #2335 from benbro/master
Fix cllosure compiler warning for uninitialized variables
This commit is contained in:
commit
4d4a03f0dc
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user