From cd48ec2abde1abd5953d103695e54f5380be90a7 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Wed, 14 Oct 2020 18:24:39 +0330 Subject: [PATCH] Shell: Put a space after the match pattern expression when formatting --- Shell/Formatter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Shell/Formatter.cpp b/Shell/Formatter.cpp index 337468b22b0..e070b41b51c 100644 --- a/Shell/Formatter.cpp +++ b/Shell/Formatter.cpp @@ -373,6 +373,7 @@ void Formatter::visit(const AST::MatchExpr* node) option.visit(*this); } + current_builder().append(' '); in_new_block([&] { if (entry.body) entry.body->visit(*this);