diff options
Diffstat (limited to 'Shell/Formatter.h')
-rw-r--r-- | Shell/Formatter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Shell/Formatter.h b/Shell/Formatter.h index 900246ae7f..7c0154f515 100644 --- a/Shell/Formatter.h +++ b/Shell/Formatter.h @@ -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; }; + +} |