Add BOOLEAN support
This commit is contained in:
@@ -88,6 +88,11 @@ var Handlebars = require("handlebars");
|
||||
this.integer = integer;
|
||||
};
|
||||
|
||||
Handlebars.AST.BooleanNode = function(boolean) {
|
||||
this.type = "BOOLEAN";
|
||||
this.boolean = boolean;
|
||||
};
|
||||
|
||||
Handlebars.AST.CommentNode = function(comment) {
|
||||
this.type = "comment";
|
||||
this.comment = comment;
|
||||
|
||||
Reference in New Issue
Block a user