summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser.ts
Commit message (Collapse)AuthorAgeFilesLines
* -- Completely rewritten parser to support all known(to me) C++ constructs, ↵Rowan Goemans2017-11-051-175/+0
| | | | | | | | | | | 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.
* Fix param generation for function pointersChristoph Schlosser2017-10-151-5/+34
| | | | Fixes #10
* -- Fixed tslint issues v2Rowan Goemans2017-10-151-5/+5
|
* -- Fixed tslint issues.Rowan Goemans2017-10-151-13/+18
| | | | -- Added config parameter to add type information to return DoxyGen parameter.
* -- Added extensive templating the be able to generated different types of ↵Rowan Goemans2017-10-141-10/+9
| | | | doxygen comment.
* Add option to generate return type documentationChristoph Schlosser2017-10-141-1/+10
|
* Remove compiler keywords from function signatureChristoph Schlosser2017-10-141-1/+3
| | | | | | Prior to method return type extraction remove compiler keywords from the signature. Fixes #9
* Add C parser and generatorChristoph Schlosser2017-10-071-0/+131