This commit is contained in:
kpdecker
2015-02-10 20:40:53 -06:00
parent 0099e16a01
commit c15f90e513
+1 -1
View File
@@ -494,6 +494,6 @@ function transformLiteralToPath(sexpr) {
var literal = sexpr.path;
// Casting to string here to make false and 0 literal values play nicely with the rest
// of the system.
sexpr.path = new AST.PathExpression(false, 0, [literal.original+''], literal.original+'', literal.log);
sexpr.path = new AST.PathExpression(false, 0, [literal.original+''], literal.original+'', literal.loc);
}
}