64 lines
1.2 KiB
JavaScript
64 lines
1.2 KiB
JavaScript
if(exports) { var Handlebars = {} }
|
|
|
|
Handlebars.AST = {};
|
|
|
|
Handlebars.AST.ProgramNode = function(statements, inverse) {
|
|
this.type = "program";
|
|
this.statements = statements;
|
|
this.inverse = inverse;
|
|
};
|
|
|
|
Handlebars.AST.MustacheNode = function(params) {
|
|
this.type = "mustache";
|
|
this.id = params[0];
|
|
this.params = params.slice(1);
|
|
};
|
|
|
|
Handlebars.AST.PartialNode = function(id) {
|
|
this.type = "partial";
|
|
this.id = id;
|
|
};
|
|
|
|
Handlebars.AST.BlockNode = function(mustache, program) {
|
|
this.type = "block";
|
|
this.mustache = mustache;
|
|
this.program = program;
|
|
};
|
|
|
|
Handlebars.AST.ContentNode = function(string) {
|
|
this.type = "content";
|
|
this.string = string;
|
|
}
|
|
|
|
Handlebars.AST.IdNode = function(parts) {
|
|
this.type = "ID"
|
|
this.parts = parts;
|
|
|
|
var dig = [], depth = 0;
|
|
|
|
for(var i=0,l=parts.length; i<l; i++) {
|
|
var part = parts[i];
|
|
|
|
if(part === "..") { depth++; }
|
|
else if(part === "." || part === "this") { break; }
|
|
else { dig.push(part) }
|
|
}
|
|
|
|
this.dig = dig;
|
|
this.depth = depth;
|
|
}
|
|
|
|
Handlebars.AST.StringNode = function(string) {
|
|
this.type = "STRING";
|
|
this.string = string;
|
|
}
|
|
|
|
Handlebars.AST.CommentNode = function(comment) {
|
|
this.type = "comment";
|
|
this.comment = comment;
|
|
}
|
|
|
|
if(exports) {
|
|
exports.AST = Handlebars.AST;
|
|
}
|