| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | -- Added tests for the configuration options. | Rowan Goemans | 2018-02-20 | 5 | -41/+109 |
| | | | | | -- Expanded the mock classes to allow for more dynamic setting of the contents. | ||||
| * | -- Finished all parameter tests. | Rowan Goemans | 2018-02-20 | 4 | -11/+336 |
| | | | | | -- Added support for all C++ string literals. | ||||
| * | -- Completed unit tests for operators. Conversion operators aren't working yet. | Rowan Goemans | 2018-02-20 | 18 | -225/+290 |
| | | | | | | -- Renamed all C things to Cpp since that is really what they are. -- Made empty files for the remaining unit tests. | ||||
| * | -- Added missing test for edge case for fundamental types unit test. | Rowan Goemans | 2018-02-20 | 3 | -23/+49 |
| | | |||||
| * | -- Renamed unit test with a C++ prefix to make sure future unit tests for ↵ | Rowan Goemans | 2018-02-20 | 6 | -6/+6 |
| | | | | | other languages can be easily distinguished. | ||||
| * | -- Added test for constructors and destructors. | Rowan Goemans | 2018-02-20 | 5 | -15/+72 |
| | | | | | | -- Removed config value for null on bool pointer return. I think it's to confusing for users. -- Fixed some small remaining refactor bugs. | ||||
| * | -- Added many unit tests for the C parser. Almost complete now | Rowan Goemans | 2018-02-20 | 24 | -649/+809 |
| | | | | | | | | | -- 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 Goemans | 2018-02-20 | 17 | -113/+347 |
| | | | | | -- Added support for alignas. | ||||
| * | -- Implemented support for all operators except the conversion operator. | Rowan Goemans | 2018-02-20 | 7 | -181/+286 |
| | | | | | | | | | | -- 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. | ||||
| * | Generation tests should suffice for now | Christoph Schlosser | 2017-12-16 | 1 | -30/+0 |
| | | |||||
| * | Add more tests | Christoph Schlosser | 2017-12-16 | 1 | -0/+82 |
| | | |||||
| * | Add basic tests | Christoph Schlosser | 2017-12-16 | 7 | -5/+279 |
| | | |||||
| * | Cleanup Parser interface | Christoph Schlosser | 2017-12-16 | 3 | -4/+3 |
| | | |||||
| * | -- Fixed bug where type modifiers like unsigned signed weren't properly ↵ | Rowan Goemans | 2017-11-23 | 1 | -33/+8 |
| | | | | | recognized. | ||||
| * | -- Fixed error where endReplace was used before declaration. | Rowan Goemans | 2017-11-23 | 1 | -1/+1 |
| | | |||||
| * | -- Fixed unused assignment. | Rowan Goemans | 2017-11-23 | 1 | -2/+1 |
| | | |||||
| * | -- Fixed bug where using a different trigger sequence then "*" causes a ↵ | Rowan Goemans | 2017-11-23 | 1 | -5/+2 |
| | | | | | newline to be addd between the comment and the documented entity. | ||||
| * | Merge branch 'master' of https://github.com/christophschlosser/doxdocgen | Rowan Goemans | 2017-11-05 | 1 | -1/+0 |
| |\ | |||||
| | * | -- Refactored stripping initializer list and assignment token into function. | Rowan Goemans | 2017-11-05 | 1 | -15/+23 |
| | | | |||||
| | * | -- Fixed problem where initializer list where not working correctly. | Rowan Goemans | 2017-11-05 | 1 | -9/+16 |
| | | | |||||
| | * | -- Modified parser to never return null. It will no always generate an empty ↵ | Rowan Goemans | 2017-11-05 | 1 | -3/+4 |
| | | | | | | | | | doxygen comment. usable for Describing instance variables. Enum, structs etc. | ||||
| | * | -- Added support for null in the comment generation. | Rowan Goemans | 2017-11-05 | 1 | -1/+1 |
| | | | |||||
| | * | -- Added support for void function no return get generated for them. | Rowan Goemans | 2017-11-05 | 1 | -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 Goemans | 2017-11-05 | 4 | -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 Goemans | 2017-11-05 | 7 | -182/+638 |
| | | | | | | | | | | | | | | | | | | | | | | | 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 Goemans | 2017-11-05 | 1 | -0/+6 |
| | | | | | | | | | in the access specifier being considered a symbol. | ||||
| * | | -- Refactored stripping initializer list and assignment token into function. | Rowan Goemans | 2017-11-05 | 1 | -15/+23 |
| | | | |||||
| * | | -- Fixed problem where initializer list where not working correctly. | Rowan Goemans | 2017-11-05 | 1 | -9/+16 |
| | | | |||||
| * | | -- Modified parser to never return null. It will no always generate an empty ↵ | Rowan Goemans | 2017-11-05 | 1 | -3/+4 |
| | | | | | | | | | doxygen comment. usable for Describing instance variables. Enum, structs etc. | ||||
| * | | -- Added support for null in the comment generation. | Rowan Goemans | 2017-11-05 | 1 | -1/+1 |
| | | | |||||
| * | | -- Added support for void function no return get generated for them. | Rowan Goemans | 2017-11-05 | 1 | -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 Goemans | 2017-11-05 | 4 | -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 Goemans | 2017-10-30 | 7 | -182/+638 |
| |/ | | | | | | | | | | | 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 pointers | Christoph Schlosser | 2017-10-15 | 2 | -8/+40 |
| | | | | | Fixes #10 | ||||
| * | -- Fixed issues from review. | Rowan Goemans | 2017-10-15 | 2 | -8/+8 |
| | | |||||
| * | -- Fixed various issues that came out of the pull request review. | Rowan Goemans | 2017-10-15 | 2 | -19/+21 |
| | | |||||
| * | -- Fixed bad newline in constructor of CGen. | Rowan Goemans | 2017-10-15 | 1 | -2/+1 |
| | | |||||
| * | -- Added defaults to configuration reader in CGen. | Rowan Goemans | 2017-10-15 | 1 | -8/+8 |
| | | |||||
| * | -- Removed unnecesary member variable. | Rowan Goemans | 2017-10-15 | 1 | -2/+1 |
| | | |||||
| * | -- Fixed issue in setting the cursor if no brief was specified. Cursor is ↵ | Rowan Goemans | 2017-10-15 | 1 | -7/+17 |
| | | | | | new set to the first DoxyGen command in the comment. | ||||
| * | -- tslint fix v3 | Rowan Goemans | 2017-10-15 | 1 | -11/+11 |
| | | |||||
| * | -- Fixed tslint issues v2 | Rowan Goemans | 2017-10-15 | 2 | -17/+17 |
| | | |||||
| * | -- Fixed tslint issues. | Rowan Goemans | 2017-10-15 | 5 | -37/+70 |
| | | | | | -- Added config parameter to add type information to return DoxyGen parameter. | ||||
| * | -- Added extensive templating the be able to generated different types of ↵ | Rowan Goemans | 2017-10-14 | 5 | -126/+128 |
| | | | | | doxygen comment. | ||||
| * | Add option to generate return type documentation | Christoph Schlosser | 2017-10-14 | 3 | -6/+20 |
| | | |||||
| * | Remove compiler keywords from function signature | Christoph Schlosser | 2017-10-14 | 1 | -1/+3 |
| | | | | | | | Prior to method return type extraction remove compiler keywords from the signature. Fixes #9 | ||||
| * | Add option to choose Qt style comment start0.0.3 | Christoph Schlosser | 2017-10-09 | 2 | -3/+12 |
| | | |||||
| * | Add C parser and generator | Christoph Schlosser | 2017-10-07 | 5 | -269/+295 |
| | | |||||
| * | Initial files | Christoph Schlosser | 2017-10-06 | 8 | -0/+471 |