aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/lexer (unfollow)
Commit message (Collapse)Author
2020-01-14remove unnecessary static-sEgor Tensin
2020-01-13clang-format all the codeEgor Tensin
2020-01-06remove unnecessary #include-sEgor Tensin
2020-01-06lexer: fix GCC build errorsEgor Tensin
2020-01-06lexer: std:: vs boost:: for whitespace parsingEgor Tensin
Added the corresponding benchmarks too.
2020-01-04lexer: switch to Boost.RegexEgor Tensin
2020-01-03lexer: refactor details/parse.cpp even moreEgor Tensin
2020-01-03lexer: refactor details/parse.cpp a bitEgor Tensin
2020-01-03lexer: add alternative boost::regex implementationsEgor Tensin
2020-01-03lexer: split out testing-exposed functionsEgor Tensin
2019-12-31support the power (^) operatorEgor Tensin
It doesn't work with the unary minus currently (as is reflected in the tests), it should have a higher precedence.
2019-12-22add licensing notes to source filesEgor Tensin
2019-12-08fix Visual Studio 2019 errorsEgor Tensin
Some std::string_view::string_view couldn't be resolved. Additionally, couldn't construct std::string_view from an initializer list sometimes, similar to the infamous std::vector constructor woes.
2019-12-07split server into multiple componentsEgor Tensin
In a vague attempt to make header files more readable, split server/ into a number of components. Also, refactor the unit tests to use the "Data-driven test cases" of Boost.Test.