mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:08:10 +00:00
Shell: Move everything to the Shell namespace
Also provide a basic default-constructor.
This commit is contained in:
parent
34039d6639
commit
f164b808b5
17 changed files with 115 additions and 17 deletions
|
@ -29,6 +29,8 @@
|
|||
#include "Parser.h"
|
||||
#include <AK/TemporaryChange.h>
|
||||
|
||||
namespace Shell {
|
||||
|
||||
String Formatter::format()
|
||||
{
|
||||
auto node = Parser(m_source).parse();
|
||||
|
@ -595,3 +597,5 @@ void Formatter::visit(const AST::WriteRedirection* node)
|
|||
current_builder().append(" >");
|
||||
NodeVisitor::visit(node);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue