summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/CParser.ts
Commit message (Collapse)AuthorAgeFilesLines
* -- Cleaned up some code and refactored functions.Rowan Goemans2017-11-051-120/+275
| | | | | | -- 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-10-301-0/+387
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.