summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/ast.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/handlebars/ast.js')
-rw-r--r--lib/handlebars/ast.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/handlebars/ast.js b/lib/handlebars/ast.js
index ca9ffd1..fdd37a3 100644
--- a/lib/handlebars/ast.js
+++ b/lib/handlebars/ast.js
@@ -32,7 +32,6 @@ Handlebars.AST.ContentNode = function(string) {
Handlebars.AST.IdNode = function(parts) {
this.type = "ID"
- this.parts = parts;
var dig = [], depth = 0;
@@ -44,7 +43,7 @@ Handlebars.AST.IdNode = function(parts) {
else { dig.push(part) }
}
- this.dig = dig;
+ this.parts = dig;
this.depth = depth;
}