summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-08-29 09:21:33 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-08-29 09:21:33 (GMT)
commitf0cf6f2324a2f27214b0216be9f9f0d03d32f401 (patch)
tree365bead74631fc5d7513338956e2a80e6f97fd65 /src
parenta3ef054f5d2af360fa7541e01a6de102d1c7c147 (diff)
downloadDoxygen-f0cf6f2324a2f27214b0216be9f9f0d03d32f401.zip
Doxygen-f0cf6f2324a2f27214b0216be9f9f0d03d32f401.tar.gz
Doxygen-f0cf6f2324a2f27214b0216be9f9f0d03d32f401.tar.bz2
Issue 6469: Java method calls are ignored in generating call/caller graph with Graphviz
Added possibility for `List<String> list = new ArrayList<>();` and `List<String> list = new ArrayList<String>();` i.e. the `<...>` in the `new` part
Diffstat (limited to 'src')
-rw-r--r--src/code.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index 2c9b0ae..fc3e7b7 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2627,6 +2627,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
addType();
g_name=varname;
}
+<Body>{SCOPETNAME}{B}*"<"[^\n\/\-\.\{\"\>]*">"/{BN}*"(" |
<Body>{SCOPETNAME}/{BN}*"(" { // a() or c::a() or t<A,B>::a() or A\B\foo()
addType();
generateFunctionLink(*g_code,yytext);