[Style] Forbid spaces between type names and protocol names in Objective-C
Created attachment 453694 [details] Patch
Comment on attachment 453694 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=453694&action=review > Tools/Scripts/webkitpy/style/checkers/cpp.py:3420 > + using_space_with_protocol = search(r'\Wid <', line) Is \W better than \b for this?
Comment on attachment 453694 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=453694&action=review >> Tools/Scripts/webkitpy/style/checkers/cpp.py:3420 >> + using_space_with_protocol = search(r'\Wid <', line) > > Is \W better than \b for this? \b is probably better. I’ll update before landing.
Committed r290784 (248028@trunk): <https://commits.webkit.org/248028@trunk>
<rdar://problem/89762953>