Back four commits ... Fixing named function expressions -> function declarations for IE. (grumble grumble)

This commit is contained in:
Jeremy Ashkenas
2010-10-11 12:13:01 -04:00
parent de0b93381c
commit acc06d772a
7 changed files with 71 additions and 38 deletions

View File

@@ -4,7 +4,8 @@
_ref = require('./helpers'), include = _ref.include, count = _ref.count, starts = _ref.starts, compact = _ref.compact, last = _ref.last;
exports.Lexer = (function() {
Lexer = (function() {
return function Lexer() {};
function Lexer() {};
return Lexer;
})();
Lexer.prototype.tokenize = function(code, options) {
var o;