Lines Matching defs:AST
6 Handlebars.AST = {};
8 Handlebars.AST.ProgramNode = function(statements, inverse) {
11 if(inverse) { this.inverse = new Handlebars.AST.ProgramNode(inverse); }
14 Handlebars.AST.MustacheNode = function(params, hash, unescaped) {
22 Handlebars.AST.PartialNode = function(id, context) {
37 Handlebars.AST.BlockNode = function(mustache, program, close) {
44 Handlebars.AST.InverseNode = function(mustache, program, close) {
51 Handlebars.AST.ContentNode = function(string) {
56 Handlebars.AST.HashNode = function(pairs) {
61 Handlebars.AST.IdNode = function(parts) {
81 Handlebars.AST.StringNode = function(string) {
86 Handlebars.AST.IntegerNode = function(integer) {
91 Handlebars.AST.BooleanNode = function(bool) {
96 Handlebars.AST.CommentNode = function(comment) {