pegjs/lib/compiler/passes
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
..
generate-bytecode.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
generate-js.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
remove-proxy-rules.js Use only "//" comments 2016-09-20 15:07:39 +02:00
report-duplicate-labels.js Avoid aligning "=" 2016-09-22 09:56:29 +02:00
report-duplicate-rules.js Avoid aligning "=" 2016-09-22 09:56:29 +02:00
report-infinite-recursion.js Avoid aligning "=" 2016-09-22 09:56:29 +02:00
report-infinite-repetition.js Avoid aligning "=" 2016-09-22 09:56:29 +02:00
report-undefined-rules.js Avoid aligning "=" 2016-09-22 09:56:29 +02:00