pegjs/lib/compiler
David Majda 516023546d Use one var/let/const per variable (for initialized variables)
Use one var/let/const per variable, but only for initialized variables.
Uninitialized variables are still grouped into one var/let/const
declaration as I don't see any value in separating them. This approach
reflects the fact that initialized and uninitialized var/let/const
declarations are really two different things.

See #443.
2016-09-17 15:09:07 +02:00
..
passes Use one var/let/const per variable (for initialized variables) 2016-09-17 15:09:07 +02:00
asts.js Don't use "arrays" in lib/compiler/asts.js 2016-09-14 09:33:31 +02:00
index.js Get rid of for-in loops 2016-09-14 16:08:32 +02:00
js.js Replace some functions with arrow functions 2016-09-12 16:07:43 +02:00
opcodes.js Replace "var" with "let" & "const" 2016-09-09 10:44:00 +02:00
visitor.js Don't use "objects" in lib/compiler/visitor.js 2016-09-14 13:53:23 +02:00