pegjs/lib
David Majda 7f01db2fb8 Get rid of for-in loops
The for-in statement in JavaScript iterates also over inherited
properties. This is typically not desired and requires adding a
check using Object.prototype.hasOwnProperty inside the loop.

This commit replaces all for-in statements and related checks inside
them with iteration over Object.keys(...). The iteration is performed
using either Array.prototype.forEach of a plain for loop.
2016-09-14 16:08:32 +02:00
..
compiler Get rid of for-in loops 2016-09-14 16:08:32 +02:00
.eslintrc.json ESLint: Set environments better 2016-01-29 14:50:38 +01:00
grammar-error.js Replace classes.subclass with native classes 2016-09-13 09:09:40 +02:00
parser.js Replace some functions with arrow functions 2016-09-12 16:07:43 +02:00
peg.js Get rid of for-in loops 2016-09-14 16:08:32 +02:00