prettier/tests/object_property_comment/comment.js

18 lines
265 B
JavaScript

o = {
name:
// Comment A
// Comment B
(({id: type}: any): CreativeConcept),
};
o = {
name: // Comment A
// Comment B
(({ id: type }: any): CreativeConcept)
};
o = {
name: // Comment B // Comment A
(({ id: type }: any): CreativeConcept)
};