diff options
Diffstat (limited to 'lib/handlebars/compiler/visitor.js')
-rw-r--r-- | lib/handlebars/compiler/visitor.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/handlebars/compiler/visitor.js b/lib/handlebars/compiler/visitor.js index a2ad7bb..e191bbd 100644 --- a/lib/handlebars/compiler/visitor.js +++ b/lib/handlebars/compiler/visitor.js @@ -45,6 +45,8 @@ Visitor.prototype = { this.accept(sexpr.hash); }, + PathExpression: function(id) {}, + hash: function(hash) { var pairs = hash.pairs; @@ -53,14 +55,9 @@ Visitor.prototype = { } }, - DATA: function(data) { - this.accept(data.id); - }, - StringLiteral: function(string) {}, NumberLiteral: function(number) {}, - BooleanLiteral: function(bool) {}, - ID: function(id) {} + BooleanLiteral: function(bool) {} }; export default Visitor; |