aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/lexer (follow)
Commit message (Collapse)AuthorAge
* remove unnecessary #include-sEgor Tensin2020-01-06
|
* lexer: fix GCC build errorsEgor Tensin2020-01-06
|
* lexer: std:: vs boost:: for whitespace parsingEgor Tensin2020-01-06
| | | | Added the corresponding benchmarks too.
* lexer: switch to Boost.RegexEgor Tensin2020-01-04
|
* lexer: refactor details/parse.cpp even moreEgor Tensin2020-01-03
|
* lexer: refactor details/parse.cpp a bitEgor Tensin2020-01-03
|
* lexer: add alternative boost::regex implementationsEgor Tensin2020-01-03
|
* lexer: split out testing-exposed functionsEgor Tensin2020-01-03
|
* support the power (^) operatorEgor Tensin2019-12-31
| | | | | It doesn't work with the unary minus currently (as is reflected in the tests), it should have a higher precedence.
* add licensing notes to source filesEgor Tensin2019-12-22
|
* fix Visual Studio 2019 errorsEgor Tensin2019-12-08
| | | | | | 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.
* split server into multiple componentsEgor Tensin2019-12-07
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.