aboutsummaryrefslogtreecommitdiff
path: root/Doxyfile
AgeCommit message (Collapse)Author
2023-11-15Update doxygen and fix documentation (#5106)Máté Tokodi
Update Doxyfile to version 1.9.1 Re-enable doxygen CI checker Fix some regular comments that should have been doc comments Document void return types for some inline functions explicitly Move start of some doxygen groups so they are included always, and not left out of certain ifdefs Ignore some doxygen warnings: Member (function) is not documented in headers Documented empty return type in headers Argument has multiple @param documentation sections JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi mate.tokodi@szteszoftver.hu
2020-05-07Remove the unused `ecma_op_check_object_type_is_class` declaration (#3718)Mátyás Mustoha
Removes the unused `ecma_op_check_object_type_is_class` function declaration from `ecma-helpers.h`. This also makes the file pass the Doxygen check. JerryScript-DCO-1.0-Signed-off-by: Mátyás Mustoha mmatyas@inf.u-szeged.hu
2018-08-13Fix FILE_PATTERNS of Doxyfile and some of the issues it was hiding (#2446)Akos Kiss
`FILE_PATTERNS` is a space-separated list, in contrary to what is suggested by its documentation. The pattern `*.h, *.c` does not match header files but files with `.h,` extension only. Rewriting the current comma-separated pattern makes Doxygen actually process header files. However, it also reveals several hitherto hidden issues (mostly missing documentation) in the code. This patch fixes some of these documentation problems (and lists the files with outstanding issues in a 'backlog'). JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
2018-05-18Update Doxygen config file and fix Doxygen warnings (#2324)László Langó
A lot of warnings remained hibben because 'EXTRACT_ALL' was previously set to YES. JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
2017-10-02Updated the Doxyfile input directories. (#2024)László Langó
JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
2017-01-31Add doxygen checker (#1540)László Langó
* Fixed Doxygen issues * Updated Doxygen config * Added new script to test whether doxygen generation was successful or not * Added to Travis CI JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
2016-02-18Change the layout of the doxygen-generated documentationAkos Kiss
* Move from index-based layout to treeview-based one. * Automatically take the first sentence of the documentation as the brief doc. * Always generate both brief and detailed description sections, and always sort them alpabetically. * Disable the generation of huge and overly complex call and caller graphs. * Make the project title title-cased. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
2016-02-16Move Doxyfile to the root directory of the projectAkos Kiss
Config files are better located in the root of the project tree, no questions will raise then what the relative paths are relative to. (E.g., `INPUT` and `OUTPUT_DIRECTORY` in the current case.) JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu