pegjs/lib/compiler
David Majda 7ca229a432 Improve indentation of variable declarations
Before this commit, continuation lines of multi-line values in variable
declaration initializers were aligned with the variable name:

  let foo = {
        a: 5,
        b: 6
      };

This was highly irregular, maintenance intensive, and made declarations
look different from assignments.

This commit changes the indentation to be more regular and similar to
assignments:

  let foo = {
    a: 5,
    b: 6
  };
2016-10-04 11:30:52 +02:00
..
passes Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
asts.js Avoid aligning object keys 2016-09-22 07:55:30 +02:00
index.js Avoid aligning object keys 2016-09-22 07:55:30 +02:00
js.js Use only double quotes for strings 2016-09-21 15:06:56 +02:00
opcodes.js Use only "//" comments 2016-09-20 15:07:39 +02:00
visitor.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00