parse, output the let statement

This commit is contained in:
Fábio Santos
2015-09-06 21:33:17 +01:00
committed by Richard van Velzen
parent 34685a6f55
commit dde9e293df
4 changed files with 33 additions and 5 deletions

View File

@@ -994,6 +994,9 @@ function OutputStream(options) {
if (!avoid_semicolon)
output.semicolon();
});
DEFPRINT(AST_Let, function(self, output){
self._do_print(output, "let");
});
DEFPRINT(AST_Var, function(self, output){
self._do_print(output, "var");
});