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

@@ -682,6 +682,10 @@ var AST_Var = DEFNODE("Var", null, {
$documentation: "A `var` statement"
}, AST_Definitions);
var AST_Let = DEFNODE("Let", null, {
$documentation: "A `let` statement"
}, AST_Definitions);
var AST_Const = DEFNODE("Const", null, {
$documentation: "A `const` statement"
}, AST_Definitions);