Re: [PATCH] D24272: clang-format: [JS] whitespace required between ! and as.

2016-09-06 Thread Martin Probst via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL280731: clang-format: [JS] whitespace required between ! and as. (authored by mprobst). Changed prior to commit: https://reviews.llvm.org/D24272?vs=70442&id=70446#toc Repository: rL LLVM https://rev

Re: [PATCH] D24272: clang-format: [JS] whitespace required between ! and as.

2016-09-06 Thread Daniel Jasper via cfe-commits
djasper accepted this revision. djasper added a comment. This revision is now accepted and ready to land. Looks good. https://reviews.llvm.org/D24272 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listi

[PATCH] D24272: clang-format: [JS] whitespace required between ! and as.

2016-09-06 Thread Martin Probst via cfe-commits
mprobst created this revision. mprobst added a reviewer: djasper. mprobst added a subscriber: cfe-commits. Herald added a subscriber: klimek. Before: x!as string After: x! as string https://reviews.llvm.org/D24272 Files: lib/Format/TokenAnnotator.cpp unittests/Format/FormatTestJS.cpp