summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/Token.ts
Commit message (Collapse)AuthorAgeFilesLines
* -- Added many unit tests for the C parser. Almost complete nowRowan Goemans2018-02-201-27/+0
| | | | | | | | -- Refactored project structure to allow for more overview once we add more languages. -- Renamed a lot of types in the CParser to be more explicit. -- Made configuration injectable into the classes that need them. This allows to unit test configuration variables. -- Added 2 new config params that allows to customize what gets returned for a bool return type. -- Small changes to the logic to make it more concise.
* -- Added more unit tests.Rowan Goemans2018-02-201-1/+1
| | | | -- Added support for alignas.
* -- Implemented support for all operators except the conversion operator.Rowan Goemans2018-02-201-0/+1
| | | | | | | | | -- Implemented support for noexcept and throw. -- Implemented support for constexpr. -- Implemented support for multiple template specifications. -- Rewritten some unit tests. -- Fixed bug where unnamed parameters weren't recognized properly -- Fixed bug where namespace with template params weren't being parsed correctly.
* -- Cleaned up some code and refactored functions.Rowan Goemans2017-11-051-0/+2
| | | | | | -- Added support for infinitely nesting function pointers. -- Added support for assignment of functions with trailing returns. -- Added support for desctructors.
* -- Completely rewritten parser to support all known(to me) C++ constructs, ↵Rowan Goemans2017-11-051-0/+24
this includes: - Function pointers as parameters and as returns. - Template support. - Trailing return type. - Variadic templates. - Variadic parametes, C style and template style. - Correct parsing of template types with more then 1 template parameter.