mprobst added inline comments.

================
Comment at: lib/Format/TokenAnnotator.cpp:2355
+        (Left.Tok.getIdentifierInfo() ||
+         Left.isOneOf(tok::kw_switch, tok::kw_case, tok::kw_delete)))
+      return false;
----------------
djasper wrote:
> Why is instanceof not required in this list?
`instanceof` is not a keyword in the C++ sense, so it is covered by the 
`getIdentifierInfo` part. But this was actually a misunderstanding - 
`getIdentifierInfo` actually covers all keyword-ish tokens, so we don't need 
the list of tokens here at all.


https://reviews.llvm.org/D36142



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to