summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser
Commit message (Collapse)AuthorAgeFilesLines
* -- Implemented support for all operators except the conversion operator.Rowan Goemans2018-02-202-28/+114
| | | | | | | | | -- 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.
* Cleanup Parser interfaceChristoph Schlosser2017-12-161-1/+1
|
* -- Fixed bug where type modifiers like unsigned signed weren't properly ↵Rowan Goemans2017-11-231-33/+8
| | | | recognized.
* Merge branch 'master' of https://github.com/christophschlosser/doxdocgenRowan Goemans2017-11-051-1/+0
|\
| * -- Refactored stripping initializer list and assignment token into function.Rowan Goemans2017-11-051-15/+23
| |
| * -- Fixed problem where initializer list where not working correctly.Rowan Goemans2017-11-051-9/+16
| |
| * -- Modified parser to never return null. It will no always generate an empty ↵Rowan Goemans2017-11-051-3/+4
| | | | | | | | doxygen comment. usable for Describing instance variables. Enum, structs etc.
| * -- Added support for void function no return get generated for them.Rowan Goemans2017-11-051-1/+15
| | | | | | | | | | -- Added support for return of void pointers. They will get generated. -- Added support for return a pointer to a bool. There an extra return is added in addtion to "true" and "false". "null".
| * -- Cleaned up some code and refactored functions.Rowan Goemans2017-11-054-236/+300
| | | | | | | | | | | | -- 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-054-0/+647
| | | | | | | | | | | 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.
* -- Fixed issue where generating a comment above an access specifier resulted ↵Rowan Goemans2017-11-051-0/+6
| | | | in the access specifier being considered a symbol.
* -- Refactored stripping initializer list and assignment token into function.Rowan Goemans2017-11-051-15/+23
|
* -- Fixed problem where initializer list where not working correctly.Rowan Goemans2017-11-051-9/+16
|
* -- Modified parser to never return null. It will no always generate an empty ↵Rowan Goemans2017-11-051-3/+4
| | | | doxygen comment. usable for Describing instance variables. Enum, structs etc.
* -- Added support for void function no return get generated for them.Rowan Goemans2017-11-051-1/+15
| | | | | -- Added support for return of void pointers. They will get generated. -- Added support for return a pointer to a bool. There an extra return is added in addtion to "true" and "false". "null".
* -- Cleaned up some code and refactored functions.Rowan Goemans2017-11-054-236/+300
| | | | | | -- 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-304-0/+647
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.