This is an initial draft adding formatting inside proto text raw strings.
Details
Diff Detail
- Build Status
Buildable 5415 Build 5415: arc lint + arc unit
Event Timeline
include/clang/Format/Format.h | ||
---|---|---|
1276 | I think what we'd want here is a map from delimiter (also fix spelling) to language. | |
lib/Format/FormatToken.h | ||
271 | I would think that we should set the token types correctly. Fundamentally, this shouldn't be very different from how we handle JavaScript template strings. There we set the token type of the introducers to TT_TemplateString. | |
lib/Format/FormatTokenLexer.cpp | ||
244 | Don't use a regex here (or in the configuration). Matching regular expressions against all raw string literals in a file can be quite expensive. The string has to exactly start with a certain token sequence, so use StringRef::startsWith(). |
I think what we'd want here is a map from delimiter (also fix spelling) to language.