[compiler-rt] [flang] [llvm] [llvm] fix mustache template whitespace (PR #153724)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 29 14:51:27 PDT 2025
================
@@ -681,10 +685,59 @@ void ASTNode::renderChild(const json::Value &Contexts, llvm::raw_ostream &OS) {
Child->render(Contexts, OS);
}
+void ASTNode::indentTextNode(std::string &Body, size_t Indentation,
+ bool FinalNode) {
+ std::string spaces(Indentation, ' ');
+ size_t pos = 0;
----------------
mdenson wrote:
accepted
https://github.com/llvm/llvm-project/pull/153724
More information about the llvm-commits
mailing list