Merge pull request #439 from atavakoli/fix-js-example-vardecl

Added 'kind' to VariableDeclaration in example
redux
David Majda 8 years ago committed by GitHub
commit 7fd273d893

@ -1016,7 +1016,8 @@ VariableStatement
= VarToken __ declarations:VariableDeclarationList EOS { = VarToken __ declarations:VariableDeclarationList EOS {
return { return {
type: "VariableDeclaration", type: "VariableDeclaration",
declarations: declarations declarations: declarations,
kind: "var"
}; };
} }
@ -1124,7 +1125,8 @@ IterationStatement
type: "ForStatement", type: "ForStatement",
init: { init: {
type: "VariableDeclaration", type: "VariableDeclaration",
declarations: declarations declarations: declarations,
kind: "var"
}, },
test: extractOptional(test, 0), test: extractOptional(test, 0),
update: extractOptional(update, 0), update: extractOptional(update, 0),
@ -1158,7 +1160,8 @@ IterationStatement
type: "ForInStatement", type: "ForInStatement",
left: { left: {
type: "VariableDeclaration", type: "VariableDeclaration",
declarations: declarations declarations: declarations,
kind: "var"
}, },
right: right, right: right,
body: body body: body

Loading…
Cancel
Save