removing commented-out parseerror

This commit is contained in:
Jeremy Ashkenas 2010-02-21 11:22:49 -05:00
parent b027b5cf0d
commit 08dcc7e107
2 changed files with 0 additions and 7 deletions

View File

@ -32,9 +32,6 @@
return this.pos;
}
};
// Improved error messages.
// parser.parseError: (message, hash) ->
// throw new Error 'Unexpected ' + parser.terminals_[hash.token] + ' on line ' + hash.line
exports.VERSION = '0.5.0';
// Compile CoffeeScript to JavaScript, using the Coffee/Jison compiler.
exports.compile = function compile(code, options) {

View File

@ -24,10 +24,6 @@ parser.lexer: {
showPosition: -> @pos
}
# Improved error messages.
# parser.parseError: (message, hash) ->
# throw new Error 'Unexpected ' + parser.terminals_[hash.token] + ' on line ' + hash.line
exports.VERSION: '0.5.0'
# Compile CoffeeScript to JavaScript, using the Coffee/Jison compiler.