Skip to content

Commit 19faf4b

Browse files
committed
Fix closure compiler warnings.
1 parent b47e4b8 commit 19faf4b

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)