Switch to Jison's lexer.

This commit is contained in:
Zach Carter
2010-12-14 19:07:05 -05:00
parent ec948c7382
commit 97536f897e
10 changed files with 51 additions and 233 deletions
+14
View File
@@ -0,0 +1,14 @@
var Handlebars = {};
// BEGIN(BROWSER)
Handlebars.Visitor = function() {};
Handlebars.Visitor.prototype = {
accept: function(object) {
return this[object.type](object);
}
};
// END(BROWSER)
exports.Visitor = Handlebars.Visitor;