plugin-php icon indicating copy to clipboard operation
plugin-php copied to clipboard

incorrect position some comment in `namespace`

Open alexander-akait opened this issue 7 years ago • 0 comments

Prettier 1.14.3

PHP Plugin 0.9.0

Input:

<?php

namespace /* Comment */ Monolog\Formatter /* Comment */; /* Comment */

Output:

<?php

namespace Monolog\Formatter; /* Comment */
/* Comment */
/* Comment */

Expected behavior:

<?php

namespace /* Comment */ Monolog\Formatter /* Comment */; /* Comment */

alexander-akait avatar Oct 23 '18 15:10 alexander-akait