diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-03 00:58:56 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-03 00:58:56 +0300 |
commit | ad748449fb2d6154f0d7677f2a933aa29919075b (patch) | |
tree | 11278ebbf3890823fb6bf85014ade1b62921ff6e /server/lexer/lexer.hpp | |
parent | update cmake-common (diff) | |
download | math-server-ad748449fb2d6154f0d7677f2a933aa29919075b.tar.gz math-server-ad748449fb2d6154f0d7677f2a933aa29919075b.zip |
lexer: split out testing-exposed functions
Diffstat (limited to '')
-rw-r--r-- | server/lexer/lexer.hpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/server/lexer/lexer.hpp b/server/lexer/lexer.hpp index 44831d8..68950cb 100644 --- a/server/lexer/lexer.hpp +++ b/server/lexer/lexer.hpp @@ -15,14 +15,6 @@ #include <vector> namespace math::server { -namespace lexer::details { - -// Exposed for testing: -std::string_view parse_whitespace(const std::string_view&); -std::optional<double> parse_number(const std::string_view&); -std::optional<token::Type> parse_const_token(const std::string_view&); - -} class Lexer { public: |