Browse Source

Merge pull request #2335 from benbro/master

Fix cllosure compiler warning for uninitialized variables
Yury Delendik 13 years ago
parent
commit
4d4a03f0dc
  1. 4
      src/function.js

4
src/function.js

@ -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…
Cancel
Save