Details
- Reviewers
- None
Diff Detail
Event Timeline
lib/Format/WhitespaceManager.cpp | ||
---|---|---|
88 | Original version of the patch called propagateIndentLevels after the above line. | |
203 | The original version of the patch had a TokenTypeAndLevel structure but the information needed was available just from the index, so that's all this version saves. | |
212 | I tried just using NestingLevel here and below instead of the combined NestingLevel and IndentLevel and it doesn't work. | |
240 | The original version of this code saved the TokenType in the stack and if made the decision on which token type to save based on if 2 back was a FunctionDeclarationName. This version moves that check to here where the token type is actually used. | |
418 | Original version of patch used IsStartOfDeclName, equivalent logic is now done here. | |
lib/Format/WhitespaceManager.h | ||
165 | Is this still true? Moved this here from the propagateIndentLevels code in the original patch. | |
178 | Original version of patch had a propagateIndentLevels here that is no longer need. |
Is this still true? Moved this here from the propagateIndentLevels code in the original patch.