mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
Shell: Move everything to the Shell namespace
Also provide a basic default-constructor.
This commit is contained in:
parent
34039d6639
commit
f164b808b5
Notes:
sideshowbarker
2024-07-19 02:03:08 +09:00
Author: https://github.com/alimpfard
Commit: f164b808b5
Pull-request: https://github.com/SerenityOS/serenity/pull/3675
Reviewed-by: https://github.com/awesomekling
17 changed files with 115 additions and 17 deletions
|
@ -34,6 +34,8 @@
|
|||
#include <AK/Vector.h>
|
||||
#include <ctype.h>
|
||||
|
||||
namespace Shell {
|
||||
|
||||
class Formatter final : public AST::NodeVisitor {
|
||||
public:
|
||||
Formatter(const StringView& source, ssize_t cursor = -1)
|
||||
|
@ -119,3 +121,5 @@ private:
|
|||
|
||||
StringView m_trivia;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue