diff options
Diffstat (limited to 'Shell/Parser.cpp')
-rw-r--r-- | Shell/Parser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Shell/Parser.cpp b/Shell/Parser.cpp index 367c660a04..b0584b3275 100644 --- a/Shell/Parser.cpp +++ b/Shell/Parser.cpp @@ -29,6 +29,8 @@ #include <stdio.h> #include <unistd.h> +namespace Shell { + Parser::SavedOffset Parser::save_offset() const { return { m_offset, m_line }; @@ -1350,3 +1352,5 @@ StringView Parser::consume_while(Function<bool(char)> condition) return m_input.substring_view(start_offset, m_offset - start_offset); } + +} |