summaryrefslogtreecommitdiffstats
path: root/src/code.l
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #6957 from ↵Dimitri van Heesch2019-05-211-0/+18
|\ | | | | | | | | cfriedt/feature/cfriedt/6955/allow-javadoc-style-comment-blocks-with-a-doxyfile-variable Allow Javadoc-style comment blocks with a Doxyfile variable
| * make similar javadoc banner change for stripping special comments from codeChristopher Friedt2019-05-091-0/+18
| |
* | Add const correctness for argument listsDimitri van Heesch2019-05-051-2/+2
| |
* | Further const correctness changesDimitri van Heesch2019-05-051-3/+3
|/
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-25/+25
|
* Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-9/+9
|
* Merge pull request #6776 from albert-github/feature/bug_xhtml_tooltipDimitri van Heesch2019-02-091-5/+0
|\ | | | | Double id for tooltips in XHTML possible.
| * Double id for tooltips in XHTML Possible.albert-github2019-01-181-5/+0
| | | | | | | | The tooltips (XHTML) should not be displayed per code fragment but for the entire (output) file as otherwise tooltips might be added multiple times resulting in double IDs.
* | Remove dead codeDimitri van Heesch2019-01-211-16/+0
|/
* Minor restructuringDimitri van Heesch2018-11-181-6/+37
|
* Merge remote-tracking branch 'doxygen/master'Joe George2018-11-021-0/+1
|\
| * Merge pull request #6470 from albert-github/feature/issue_6469Dimitri van Heesch2018-10-271-0/+1
| |\ | | | | | | Issue 6469: Java method calls are ignored in generating call/caller graph with Graphviz
| | * Issue 6469: Java method calls are ignored in generating call/caller graph ↵albert-github2018-08-291-0/+1
| | | | | | | | | | | | | | | | | | with Graphviz Added possibility for `List<String> list = new ArrayList<>();` and `List<String> list = new ArrayList<String>();` i.e. the `<...>` in the `new` part
* | | Added *.ice files as a recognized file type.Mark Spruiell2018-10-221-2/+2
|/ / | | | | | | Added a Slice-optimized output mode.
* | Bug 749049 - Doxygen not creating call graphs for C# methods if namespace ↵albert-github2018-10-201-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | contains the classname Problem is the '.' in the namespace name. For Csharp: namespace N1.n2 { is equivalent to namespace N1 { namespace N2 { This splitting has to be considered in the scanner so the different namespaces are mentioned. In the code.l the '.' was not handled.
* | Merge pull request #6489 from albert-github/feature/bug_cs_using_linkDimitri van Heesch2018-09-231-1/+1
|\ \ | | | | | | Don't link to non existing / not accessible namespaces , in CSharp, in the source code
| * | Don't link to non existing / not accessible namespaces , in CSharp, in the ↵albert-github2018-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | source code In the following the 'test' and 'System' were linked in the source code, this should not be the case. using test; using System; using System.IO; namespace NON { }
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-09-101-1/+3
|\ \ \ | |/ /
| * | 'self' keyword in PHP documentationalbert-github2018-08-061-1/+3
| |/ | | | | | | In PHP the word `self` was not color coded and the functions were nor referenced in the CALL / CALLER graphs, / REFERENCES / REFERENCED lists.
* | Changed state guard instead of adding pattern check+rejectDimitri van Heesch2018-09-101-8/+1
| |
* | Bug 634830 - Automatic links don't work correctly with operator< and operator<=albert-github2018-08-111-0/+7
|/ | | | | A longer match was chosen by 'lex' resulting in that 'operator<' and 'operator<=' and the first argument were not correctly linked and color coded. We now test if the "operator" match is present, if so we use the right rule for operator.
* Moved duplicated code into dedicated function skipLanguageSpecificKeywordDimitri van Heesch2018-07-301-4/+9
|
* Bug 734820 - "remove" is treated as a keyword (green) in the source browser ↵albert-github2018-07-261-4/+4
| | | | | | for C++ Removed "remove" as keyword for C type of languages.
* Bug 727103 - Misparsed comments leading to missing call graphalbert-github2018-05-121-0/+3
| | | | | | Handling comment block in scanner.l and code.l in an analogous way. The problem is caused by a non terminated comment bock in a comment block. It is strongly advised not to use comment blocks inside other comment blocks and otherwise fix the message.
* Merge pull request #677 from albert-github/feature/bug_743539Dimitri van Heesch2018-04-221-0/+1
|\ | | | | Bug 743539 - Field with name "internal" confuses documentation builder.
| * Merge branch 'master' into feature/bug_743539Dimitri van Heesch2018-04-221-0/+6
| |\
| * | Bug 743539 - Field with name "internal" confuses documentation builder.albert-github2018-03-061-0/+1
| | | | | | | | | | | | internal is not a Java reserved word / keyword but was handled as such.
* | | Merge pull request #681 from albert-github/feature/bug_794509Dimitri van Heesch2018-04-221-1/+1
|\ \ \ | |_|/ |/| | Bug 794509 - c# see langword broken
| * | Bug 794509 - c# see langword brokenalbert-github2018-03-231-1/+1
| |/ | | | | | | | | - code.l: The word 'null' was not recognized as reserved word - docparser.l The attribute 'langword' should not generate a link but the 'langword' value as code.
* | Bug 611240 - C# keywords 'get' and 'set' are highlighted as reserved words ↵albert-github2018-02-281-0/+6
|/ | | | | | in C++ documentation source browser. In case of Cpp don't see 'get' and 'set' as keywords, but in case the keyword rule is used REJECT the rule and give other rules a chance (e.g. the function rule).
* More typosluz.paz2018-01-041-1/+1
|
* add the number of conditionals path and bugfixJoenio Costa2017-06-281-2/+52
| | | | | | | | | | | | | * Rebased with upstream master * Added build instructions to README * Bug 398942 - fixes the problem with instance variables and arguments with the same name Signed-off-by: Antonio Terceiro <terceiro@softwarelivre.org> Signed-off-by: João M. Miranda <joaomm88@gmail.com> Signed-off-by: Paulo Meirelles <paulo@softwarelivre.org> Signed-off-by: Vinicius Daros <vkdaros@mercurio.eclipse.ime.usp.br> Signed-off-by: Jonathan Moraes <arkyebr@gmail.com>
* Function declaration following a function definition incorrectly listed as ↵Dimitri van Heesch2017-04-021-11/+1
| | | | calling dependencing
* Merge pull request #521 from albert-github/feature/bug_722112Dimitri van Heesch2016-09-211-1/+7
|\ | | | | Bug 722112 - 'static' and 'throw' C++ keywords not colored
| * Bug 722112 - 'static' and 'throw' C++ keywords not coloredalbert-github2016-09-111-1/+7
| | | | | | | | In case we don't specify a name with a type in the prototype of a function the type is still stored and should be moved to the type/
* | flex: use %option instead of command line options.Adrian Negreanu2016-09-211-0/+2
| |
* | Fixed cross referencing issue when using bitfields.Dimitri van Heesch2016-09-201-1/+1
|/
* Bug 770660 - Code snippet always shows line numbers from 1albert-github2016-09-031-4/+5
| | | | | | | | | This patch makes the handling of the \snippet and other commands consistent between the different languages (no line numbers anymore with python) and also introduces analogous to \includelineno the command \snippetlineno. Some non relevant changes: - *code.l Calculation of the end line was incorrect, in case of a snippet the end line was the number of lines of the snippet and not reltive to the start line. - *code.l made consistent over the different laguages, enabling exBlock and inlineFragment - testing/indexpage.xml in test 14 the \snippet command was used with python and giving line numbers, linenumbers are now gone (consistency)
* Bug 749924 - Doxygen handles comments in Objective-C code blocks incorrectly.Dimitri van Heesch2016-05-101-8/+56
|
* Bug 762670 - References for one function can inherit References from ↵Dimitri van Heesch2016-03-201-29/+38
| | | | subsequent non documented function
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-12/+12
| | | | improve performance
* Support set in code highlightingalbert-github2015-12-091-1/+1
| | | | Analogous to the C# property get also the property set is supported
* Fixed preprocessor macros for flex version checklameventanas2015-11-251-1/+1
|
* Support flex-2.6.0Dimitri van Heesch2015-11-221-2/+2
|
* Support flex-2.6.0Heiko Becker2015-11-221-1/+1
| | | | | | The version checks only considered YY_FLEX_SUBMINOR_VERSION and did not take YY_FLEX_MINOR_VERSION into account, which made them fail with flex-2.6.0.
* Bug 629249 - Incorrect "References" and "Referenced by"albert-github2015-09-301-0/+5
| | | | Discrepancy between number of push and pop calls (push was called with "{" but no pop with "}", in the later case the <*>. rule was used)
* drop #include <unistd.h>Adrian Negreanu2015-05-151-2/+2
| | | | Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Remove unused local and static global variablesalbert-github2014-12-271-1/+0
| | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools.
* Bug 731363 - Callgraphs for C# only generated for methods inside the same classDimitri van Heesch2014-06-101-75/+81
|