diff options
author | Martin Muñoz <im.mmun@gmail.com> | 2014-11-05 11:00:39 -0500 |
---|---|---|
committer | Martin Muñoz <im.mmun@gmail.com> | 2014-11-05 11:00:39 -0500 |
commit | a5d0491d57f53425ef155a3a803a881371bf07b1 (patch) | |
tree | 0683fbe2a32048e622459a1dca588fcdafdbfaf3 /lib/handlebars/compiler/ast.js | |
parent | 12e3d210e8b3b22d19823e59bb789dc8768eb34b (diff) | |
download | handlebars.js-a5d0491d57f53425ef155a3a803a881371bf07b1.zip handlebars.js-a5d0491d57f53425ef155a3a803a881371bf07b1.tar.gz handlebars.js-a5d0491d57f53425ef155a3a803a881371bf07b1.tar.bz2 |
Remove RawBlockNode in favor of prepareRawBlock helper
Diffstat (limited to 'lib/handlebars/compiler/ast.js')
-rw-r--r-- | lib/handlebars/compiler/ast.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/handlebars/compiler/ast.js b/lib/handlebars/compiler/ast.js index 05de762..35a60db 100644 --- a/lib/handlebars/compiler/ast.js +++ b/lib/handlebars/compiler/ast.js @@ -93,14 +93,6 @@ var AST = { } }, - RawBlockNode: function(sexpr, content, locInfo) { - LocationInfo.call(this, locInfo); - - this.type = 'block'; - this.sexpr = sexpr; - this.program = new AST.ProgramNode([content], {}, locInfo); - }, - ContentNode: function(string, locInfo) { LocationInfo.call(this, locInfo); this.type = "content"; |