prettier/tests/last_argument_expansion/empty-object.js

22 lines
205 B
JavaScript

func(first, second, third, fourth, fifth, aReallyLongArgumentsListToForceItToBreak, {
// comment
})
func({
// comment
})
func(
{} // comment
)
func(
{}
// comment
)
func(
// comment
{}
)