summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/ast.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2015-04-20 02:38:28 -0500
committerkpdecker <kpdecker@gmail.com>2015-04-20 02:38:28 -0500
commit4bed826d0e210c336fb9e500835b1c1926562da5 (patch)
treeafd32d4dc7b4c2fcf6c38d0355def38ddaffdcc0 /lib/handlebars/compiler/ast.js
parent0263aa48bc8c8cdcd332edd01a644a9a0fd1cc81 (diff)
downloadhandlebars.js-4bed826d0e210c336fb9e500835b1c1926562da5.zip
handlebars.js-4bed826d0e210c336fb9e500835b1c1926562da5.tar.gz
handlebars.js-4bed826d0e210c336fb9e500835b1c1926562da5.tar.bz2
Update for let and optional parameters
Diffstat (limited to 'lib/handlebars/compiler/ast.js')
-rw-r--r--lib/handlebars/compiler/ast.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/ast.js b/lib/handlebars/compiler/ast.js
index 1ecf59b..08b127f 100644
--- a/lib/handlebars/compiler/ast.js
+++ b/lib/handlebars/compiler/ast.js
@@ -1,4 +1,4 @@
-var AST = {
+let AST = {
Program: function(statements, blockParams, strip, locInfo) {
this.loc = locInfo;
this.type = 'Program';