Skip to content

Commit 4d4a03f

Browse files
committed
Merge pull request mozilla#2335 from benbro/master
Fix cllosure compiler warning for uninitialized variables
2 parents b47e4b8 + 19faf4b commit 4d4a03f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/function.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,8 +702,8 @@ var PostScriptParser = (function PostScriptParserClosure() {
702702
function PostScriptParser(lexer) {
703703
this.lexer = lexer;
704704
this.operators = [];
705-
this.token;
706-
this.prev;
705+
this.token = null;
706+
this.prev = null;
707707
}
708708
PostScriptParser.prototype = {
709709
nextToken: function PostScriptParser_nextToken() {

0 commit comments

Comments
 (0)