Browse Source

Fix closure compiler warnings.

Ben Browitt 13 years ago
parent
commit
19faf4b9eb
  1. 4
      src/function.js

4
src/function.js

@ -702,8 +702,8 @@ var PostScriptParser = (function PostScriptParserClosure() { @@ -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…
Cancel
Save