You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
David Majda bdf91b5941 Replace "var" with "let" & "const"
This is purely a mechanical change, not taking advantage of block scope
of "let" and "const". Minimizing variable scope will come in the next
commit.

In general, "var" is converted into "let" and "const" is used only for
immutable variables of permanent character (generally spelled in
ALL_CAPS). Using it for any immutable variable regardless on its
permanence would feel confusing.

Any code which is not transpiled and needs to run in ES6 environment
(examples, code in grammars embedded in specs, ...) is kept unchanged.
This is also true for code generated by PEG.js.

See #442.
8 years ago
..
passes Replace "var" with "let" & "const" 8 years ago
asts.js Replace "var" with "let" & "const" 8 years ago
index.js Replace "var" with "let" & "const" 8 years ago
js.js Replace "var" with "let" & "const" 8 years ago
opcodes.js Replace "var" with "let" & "const" 8 years ago
visitor.js Replace "var" with "let" & "const" 8 years ago