summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/visitor.js
blob: a557dd3db5cdc08c4d8d39a028c020b7fd658ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var Handlebars = require("./base");

// BEGIN(BROWSER)

Handlebars.Visitor = function() {};

Handlebars.Visitor.prototype = {
  accept: function(object) {
    return this[object.type](object);
  }
};
// END(BROWSER)