fix duplicate comments on property key shorthands - fixes #234

This commit is contained in:
Sebastian McKenzie
2014-12-07 11:43:51 +11:00
parent bf07f54e57
commit c1c22ed5f7
5 changed files with 13 additions and 5 deletions

View File

@@ -0,0 +1,4 @@
const A = 'a';
const o = {
A // comment
};

View File

@@ -0,0 +1,4 @@
const A = 'a';
const o = {
A: A // comment
};