Don't break after a "[" opening ObjC method expression.
Tests are added in D48719 where formatting is improved (to avoid adding and changing tests immediately).
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
The test could look like:
aaaaa = [a aa:aa aa:aa];
with appropriate column limit.
Right now, however, this would be formatted:
aaaaa = [a aa:aa aa:aa];
This behavior is improved in D48719. To avoid adding
aaaaa = [a aa:aa aa:aa];
test in this change and changing it to:
aaaaa = [a aa:aa aa:aa];
in D48719 I decided to omit it altogether in this change.
Sorry for the confusion. If you prefer me to add this test and modify in later commit I'll do it.
Comment Actions
Sorry for the confusion. If you prefer me to add this test and modify in later commit I'll do it.
I see. Just mentioning what you did in the diff description is probably OK.