From cb60b95476498f290b55f1a5ce82277f990e5559 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Christophe=20Beaupr=C3=A9?= Date: Mon, 15 Dec 2014 15:08:24 -0500 Subject: [PATCH] =?utf8?q?neo=5Fdoxygen:=20Move=20the=20processing=20of=20Do?= =?utf8?q?xygen=E2=80=99s=20names=20in=20`doxml`.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jean-Christophe Beaupré --- contrib/neo_doxygen/src/doxml/compounddef.nit | 5 +- contrib/neo_doxygen/src/doxml/doxyname.nit | 72 +++++ contrib/neo_doxygen/src/model/graph.nit | 6 +- contrib/neo_doxygen/src/model/inner_class.nit | 10 +- tests/sav/neo_doxygen_dump_args4.res | 376 ++++++++++++------------- tests/sav/neo_doxygen_dump_args5.res | 376 ++++++++++++------------- tests/sav/neo_doxygen_dump_args6.res | 40 +-- tests/sav/neo_doxygen_dump_args7.res | 128 ++++----- 8 files changed, 542 insertions(+), 471 deletions(-) create mode 100644 contrib/neo_doxygen/src/doxml/doxyname.nit diff --git a/contrib/neo_doxygen/src/doxml/compounddef.nit b/contrib/neo_doxygen/src/doxml/compounddef.nit index 13da7ba..b1f7eaa 100644 --- a/contrib/neo_doxygen/src/doxml/compounddef.nit +++ b/contrib/neo_doxygen/src/doxml/compounddef.nit @@ -16,6 +16,7 @@ module doxml::compounddef import memberdef +import doxyname import more_collections # Processes the content of a `compounddef` element. @@ -142,9 +143,9 @@ class CompoundDefListener redef fun end_dox_element(local_name: String) do if "compoundname" == local_name then - compound.full_name = text.to_s + compound.doxyname = text.to_s else if "innerclass" == local_name then - compound.declare_class(refid, text.to_s, prot) + compound.doxygen_declare_class(refid, text.to_s, prot) else if "innernamespace" == local_name then compound.declare_namespace(refid, text.to_s) else if "memberdef" == local_name then diff --git a/contrib/neo_doxygen/src/doxml/doxyname.nit b/contrib/neo_doxygen/src/doxml/doxyname.nit new file mode 100644 index 0000000..4676344 --- /dev/null +++ b/contrib/neo_doxygen/src/doxml/doxyname.nit @@ -0,0 +1,72 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Adds a methods to convert Doxygen’s names into short names. +module doxml::doxyname + +import model + +redef class Compound + + # Separator used by Doxygen to separate name’s components. + protected fun doxyname_separator: String do return "::" + + # Set the `name` using the specified name generated by Doxygen. + fun doxyname=(doxyname: String) do + name = doxyname.to_short_name(doxyname_separator) + end + + # Declare an inner class. + # + # Note: Althought Doxygen indicates that both arguments are optional, + # declarations with an empty ID are not supported yet. + # + # Parameters: + # + # * `id`: `model_id` of the inner class. + # * `doxyname`: qualified name of the inner class, as generated by Doxygen. + # * `prot`: visibility (proctection). + # + # TODO: Handle cases where only the `doxyname` is available. + fun doxygen_declare_class(id: String, doxyname: String, prot: String) do + declare_class(id, doxyname.to_short_name(doxyname_separator), prot) + end +end + +redef class Namespace + # Set the `name` and the `full_name` using the specified name generated by Doxygen. + redef fun doxyname=(doxyname: String) do + full_name = doxyname + super + end +end + +redef class FileCompound + redef fun doxyname_separator do return "/" +end + +redef class Text + # Return the substring that come after the last occurrence of `separator`. + # + # Return the whole string if `sperator` is not present. + private fun to_short_name(separator: String): SELFTYPE do + var m = search_last(separator) + + if m == null then + return self + else + return substring_from(m.after) + end + end +end diff --git a/contrib/neo_doxygen/src/model/graph.nit b/contrib/neo_doxygen/src/model/graph.nit index 198b8fb..18f91c4 100644 --- a/contrib/neo_doxygen/src/model/graph.nit +++ b/contrib/neo_doxygen/src/model/graph.nit @@ -277,11 +277,9 @@ abstract class Compound # Parameters: # # * `id`: `model_id` of the inner class. - # * `full_name`: qualified name of the inner class. Ignored in practice. + # * `name`: short name of the inner class. # * `prot`: visibility (proctection). - # - # TODO: Handle cases where only the `full_name` is available. - fun declare_class(id: String, full_name: String, prot: String) do end + fun declare_class(id: String, name: String, prot: String) do end # Declare a base compound (usually, a base class). # diff --git a/contrib/neo_doxygen/src/model/inner_class.nit b/contrib/neo_doxygen/src/model/inner_class.nit index 91ee697..c6e49fc 100644 --- a/contrib/neo_doxygen/src/model/inner_class.nit +++ b/contrib/neo_doxygen/src/model/inner_class.nit @@ -80,8 +80,8 @@ end # Implements `declare_class`. redef class ClassCompound - redef fun declare_class(id, full_name, prot) do - class_def.declare_class(id, full_name, prot) + redef fun declare_class(id, name, prot) do + class_def.declare_class(id, name, prot) end end @@ -103,11 +103,11 @@ redef class ClassDef # Parameters: # # * `id`: `model_id` of the inner class definition. - # * `full_name`: qualified name of the inner class definition. + # * `name`: name of the inner class definition. # * `prot`: visibility (proctection). - fun declare_class(id: String, full_name: String, prot: String) do + fun declare_class(id: String, name: String, prot: String) do var member = new InnerClass(graph, self, id) - member.full_name = full_name + member.name = name member.visibility = prot members.add member inner_classes.add member diff --git a/tests/sav/neo_doxygen_dump_args4.res b/tests/sav/neo_doxygen_dump_args4.res index f44e8ea..2aaa241 100644 --- a/tests/sav/neo_doxygen_dump_args4.res +++ b/tests/sav/neo_doxygen_dump_args4.res @@ -88,8 +88,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} Edge @@ -110,8 +110,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} Edge @@ -154,8 +154,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} Edge @@ -176,8 +176,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} Edge @@ -220,8 +220,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} Edge @@ -242,8 +242,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} Edge @@ -286,8 +286,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -308,8 +308,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","full_name":"org::example::foo::EmptyClass","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -369,8 +369,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true,"full_name":"org::example::foo::A::bar"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -378,8 +378,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::A::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -393,8 +393,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true,"full_name":"org::example::foo::A::bar"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -532,8 +532,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} ---- =to=Entity#0: =labels=Array(4): @@ -541,8 +541,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} Edge @@ -556,16 +556,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_a =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} Edge @@ -578,8 +578,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#0: =labels=Array(4): @@ -587,8 +587,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} Edge @@ -601,16 +601,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_a =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} Edge @@ -623,8 +623,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#0: =labels=Array(4): @@ -632,8 +632,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::A::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -647,16 +647,16 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::A::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} Edge @@ -669,8 +669,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_a_1add415ae4129969055d678c7e7e048852 =labels=Array(4): @@ -678,8 +678,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true,"full_name":"org::example::foo::A::bar"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true} Edge @@ -693,8 +693,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true,"full_name":"org::example::foo::B::qux"} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -702,8 +702,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"protected","name":"qux","full_name":"org::example::foo::B::qux"} +=properties=JsonObject(2): +{"visibility":"protected","name":"qux"} Edge @@ -717,8 +717,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true,"full_name":"org::example::foo::B::qux"} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -787,8 +787,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(8): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true,"full_name":"org::example::foo::B::bar"} +=properties=JsonObject(7): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -796,8 +796,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::B::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -811,8 +811,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(8): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true,"full_name":"org::example::foo::B::bar"} +=properties=JsonObject(7): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -951,8 +951,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false,"full_name":"org::example::foo::B::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false} ---- =to=Entity#0: =labels=Array(4): @@ -960,8 +960,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} Edge @@ -975,8 +975,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false,"full_name":"org::example::foo::B::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false} ---- =to=Entity#0: =labels=Array(4): @@ -1022,8 +1022,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} ---- =to=Entity#0: =labels=Array(4): @@ -1031,8 +1031,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(1): +{"name":"B"} Edge @@ -1046,16 +1046,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(1): +{"name":"B"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_b =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} Edge @@ -1068,8 +1068,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1077,8 +1077,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(1): +{"name":"B"} Edge @@ -1091,16 +1091,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_b =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} Edge @@ -1113,8 +1113,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1122,8 +1122,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} Edge @@ -1136,8 +1136,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1145,8 +1145,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} Edge @@ -1159,8 +1159,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1168,8 +1168,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"protected","name":"qux","full_name":"org::example::foo::B::qux"} +=properties=JsonObject(2): +{"visibility":"protected","name":"qux"} Edge @@ -1183,16 +1183,16 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"protected","name":"qux","full_name":"org::example::foo::B::qux"} +=properties=JsonObject(2): +{"visibility":"protected","name":"qux"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} Edge @@ -1205,8 +1205,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_b_1ac6b627949b10b9357eefc0cafcae1d87 =labels=Array(4): @@ -1214,8 +1214,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true,"full_name":"org::example::foo::B::qux"} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true} Edge @@ -1228,8 +1228,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1237,8 +1237,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::B::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -1252,16 +1252,16 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::B::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} Edge @@ -1274,8 +1274,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_b_1a11e157943665cc9e3a9be1502ebeb3b5 =labels=Array(4): @@ -1283,8 +1283,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(8): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true,"full_name":"org::example::foo::B::bar"} +=properties=JsonObject(7): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true} Edge @@ -1297,8 +1297,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_b_1a733f4e076f29c7d0c41ed258199ea1d9 =labels=Array(4): @@ -1306,8 +1306,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false,"full_name":"org::example::foo::B::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false} Edge @@ -1320,8 +1320,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} ---- =to=Entity#0: =labels=Array(4): @@ -1329,8 +1329,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"EmptyClass","full_name":"org::example::foo::EmptyClass"} +=properties=JsonObject(1): +{"name":"EmptyClass"} Edge @@ -1344,16 +1344,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"EmptyClass","full_name":"org::example::foo::EmptyClass"} +=properties=JsonObject(1): +{"name":"EmptyClass"} ---- =to=Entity#42:classorg_1_1example_1_1foo_1_1_empty_class =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -1366,8 +1366,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","full_name":"org::example::foo::EmptyClass","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","mdoc":["This class is empty and is only visible in this package."]} ---- =to=Entity#0: =labels=Array(4): @@ -1375,8 +1375,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"EmptyClass","full_name":"org::example::foo::EmptyClass"} +=properties=JsonObject(1): +{"name":"EmptyClass"} Edge @@ -1389,16 +1389,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","full_name":"org::example::foo::EmptyClass","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","mdoc":["This class is empty and is only visible in this package."]} ---- =to=Entity#42:classorg_1_1example_1_1foo_1_1_empty_class =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -1412,8 +1412,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(6): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true,"full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(5): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1421,8 +1421,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"public","name":"THE_ANSWER","full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(2): +{"visibility":"public","name":"THE_ANSWER"} Edge @@ -1436,8 +1436,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(6): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true,"full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(5): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1460,8 +1460,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true,"full_name":"org::example::foo::C::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1469,8 +1469,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} Edge @@ -1484,8 +1484,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true,"full_name":"org::example::foo::C::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1531,8 +1531,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1540,8 +1540,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} Edge @@ -1555,16 +1555,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} ---- =to=Entity#36:interfaceorg_1_1example_1_1foo_1_1_c =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} Edge @@ -1577,8 +1577,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1586,8 +1586,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} Edge @@ -1600,16 +1600,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#36:interfaceorg_1_1example_1_1foo_1_1_c =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} Edge @@ -1622,8 +1622,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1631,8 +1631,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"public","name":"THE_ANSWER","full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(2): +{"visibility":"public","name":"THE_ANSWER"} Edge @@ -1646,16 +1646,16 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"public","name":"THE_ANSWER","full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(2): +{"visibility":"public","name":"THE_ANSWER"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} Edge @@ -1668,8 +1668,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#71:interfaceorg_1_1example_1_1foo_1_1_c_1a4e97061eb40b045e820de05b33c43d21 =labels=Array(4): @@ -1677,8 +1677,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(6): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true,"full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(5): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true} Edge @@ -1691,8 +1691,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1700,8 +1700,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} Edge @@ -1715,16 +1715,16 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} Edge @@ -1737,8 +1737,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#71:interfaceorg_1_1example_1_1foo_1_1_c_1a28ac7ce349ebb3e4a7747a8dd951582b =labels=Array(4): @@ -1746,8 +1746,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true,"full_name":"org::example::foo::C::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true} Edge diff --git a/tests/sav/neo_doxygen_dump_args5.res b/tests/sav/neo_doxygen_dump_args5.res index ae6cb05..f376409 100644 --- a/tests/sav/neo_doxygen_dump_args5.res +++ b/tests/sav/neo_doxygen_dump_args5.res @@ -88,8 +88,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} Edge @@ -110,8 +110,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} Edge @@ -154,8 +154,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} Edge @@ -176,8 +176,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} Edge @@ -220,8 +220,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} Edge @@ -242,8 +242,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} Edge @@ -286,8 +286,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -308,8 +308,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","full_name":"org::example::foo::EmptyClass","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -369,8 +369,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":true,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true,"full_name":"org::example::foo::A::bar"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":true,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -378,8 +378,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::A::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -393,8 +393,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":true,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true,"full_name":"org::example::foo::A::bar"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":true,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -532,8 +532,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} ---- =to=Entity#0: =labels=Array(4): @@ -541,8 +541,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} Edge @@ -556,16 +556,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_a =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} Edge @@ -578,8 +578,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#0: =labels=Array(4): @@ -587,8 +587,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} Edge @@ -601,16 +601,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_a =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"abstract class","visibility":"public","full_name":"org::example::foo::A","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} +=properties=JsonObject(4): +{"kind":"abstract class","visibility":"public","name":"A","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1"} Edge @@ -623,8 +623,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#0: =labels=Array(4): @@ -632,8 +632,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::A::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -647,16 +647,16 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::A::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} Edge @@ -669,8 +669,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:18,1--23,1","is_intro":true,"name":"A"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_a_1add415ae4129969055d678c7e7e048852 =labels=Array(4): @@ -678,8 +678,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":true,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true,"full_name":"org::example::foo::A::bar"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/A.java:22,1--1,1","is_intern":false,"is_extern":false,"is_abstract":true,"visibility":"public","name":"bar","mdoc":["Does something..."],"is_intro":true} Edge @@ -693,8 +693,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true,"full_name":"org::example::foo::B::qux"} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -702,8 +702,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"protected","name":"qux","full_name":"org::example::foo::B::qux"} +=properties=JsonObject(2): +{"visibility":"protected","name":"qux"} Edge @@ -717,8 +717,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true,"full_name":"org::example::foo::B::qux"} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -787,8 +787,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(8): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true,"full_name":"org::example::foo::B::bar"} +=properties=JsonObject(7): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -796,8 +796,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::B::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -811,8 +811,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(8): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true,"full_name":"org::example::foo::B::bar"} +=properties=JsonObject(7): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -951,8 +951,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false,"full_name":"org::example::foo::B::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false} ---- =to=Entity#0: =labels=Array(4): @@ -960,8 +960,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} Edge @@ -975,8 +975,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false,"full_name":"org::example::foo::B::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false} ---- =to=Entity#0: =labels=Array(4): @@ -1022,8 +1022,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} ---- =to=Entity#0: =labels=Array(4): @@ -1031,8 +1031,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(1): +{"name":"B"} Edge @@ -1046,16 +1046,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(1): +{"name":"B"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_b =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} Edge @@ -1068,8 +1068,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1077,8 +1077,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(1): +{"name":"B"} Edge @@ -1091,16 +1091,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#32:classorg_1_1example_1_1foo_1_1_b =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(5): -{"kind":"class","visibility":"public","full_name":"org::example::foo::B","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} +=properties=JsonObject(4): +{"kind":"class","visibility":"public","name":"B","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1"} Edge @@ -1113,8 +1113,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1122,8 +1122,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"A","full_name":"org::example::foo::A"} +=properties=JsonObject(1): +{"name":"A"} Edge @@ -1136,8 +1136,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1145,8 +1145,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} Edge @@ -1159,8 +1159,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1168,8 +1168,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"protected","name":"qux","full_name":"org::example::foo::B::qux"} +=properties=JsonObject(2): +{"visibility":"protected","name":"qux"} Edge @@ -1183,16 +1183,16 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"protected","name":"qux","full_name":"org::example::foo::B::qux"} +=properties=JsonObject(2): +{"visibility":"protected","name":"qux"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} Edge @@ -1205,8 +1205,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_b_1ac6b627949b10b9357eefc0cafcae1d87 =labels=Array(4): @@ -1214,8 +1214,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true,"full_name":"org::example::foo::B::qux"} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:19,1---1,1","visibility":"protected","name":"qux","is_intro":true} Edge @@ -1228,8 +1228,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#0: =labels=Array(4): @@ -1237,8 +1237,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::B::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} Edge @@ -1252,16 +1252,16 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"bar","full_name":"org::example::foo::B::bar"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"bar"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} Edge @@ -1274,8 +1274,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_b_1a11e157943665cc9e3a9be1502ebeb3b5 =labels=Array(4): @@ -1283,8 +1283,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(8): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true,"full_name":"org::example::foo::B::bar"} +=properties=JsonObject(7): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:21,1--23,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"bar","is_intro":true} Edge @@ -1297,8 +1297,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(4): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B","full_name":"org::example::foo::B"} +=properties=JsonObject(3): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:18,1--29,1","is_intro":true,"name":"B"} ---- =to=Entity#67:classorg_1_1example_1_1foo_1_1_b_1a733f4e076f29c7d0c41ed258199ea1d9 =labels=Array(4): @@ -1306,8 +1306,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false,"full_name":"org::example::foo::B::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/B.java:28,1--28,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["Some overriden documentation."],"is_intro":false} Edge @@ -1320,8 +1320,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} ---- =to=Entity#0: =labels=Array(4): @@ -1329,8 +1329,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"EmptyClass","full_name":"org::example::foo::EmptyClass"} +=properties=JsonObject(1): +{"name":"EmptyClass"} Edge @@ -1344,16 +1344,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"EmptyClass","full_name":"org::example::foo::EmptyClass"} +=properties=JsonObject(1): +{"name":"EmptyClass"} ---- =to=Entity#42:classorg_1_1example_1_1foo_1_1_empty_class =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -1366,8 +1366,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","full_name":"org::example::foo::EmptyClass","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","mdoc":["This class is empty and is only visible in this package."]} ---- =to=Entity#0: =labels=Array(4): @@ -1375,8 +1375,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"EmptyClass","full_name":"org::example::foo::EmptyClass"} +=properties=JsonObject(1): +{"name":"EmptyClass"} Edge @@ -1389,16 +1389,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","full_name":"org::example::foo::EmptyClass","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","is_intro":true,"name":"EmptyClass","mdoc":["This class is empty and is only visible in this package."]} ---- =to=Entity#42:classorg_1_1example_1_1foo_1_1_empty_class =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"org::example::foo::EmptyClass","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"EmptyClass","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/EmptyClass.java:21,1--21,1","mdoc":["This class is empty and is only visible in this package."]} Edge @@ -1412,8 +1412,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(6): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true,"full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(5): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1421,8 +1421,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"public","name":"THE_ANSWER","full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(2): +{"visibility":"public","name":"THE_ANSWER"} Edge @@ -1436,8 +1436,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(6): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true,"full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(5): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1460,8 +1460,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true,"full_name":"org::example::foo::C::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1469,8 +1469,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} Edge @@ -1484,8 +1484,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true,"full_name":"org::example::foo::C::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -1531,8 +1531,8 @@ Edge 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1540,8 +1540,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} Edge @@ -1555,16 +1555,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} ---- =to=Entity#36:interfaceorg_1_1example_1_1foo_1_1_c =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} Edge @@ -1577,8 +1577,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1586,8 +1586,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"C","full_name":"org::example::foo::C"} +=properties=JsonObject(1): +{"name":"C"} Edge @@ -1600,16 +1600,16 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#36:interfaceorg_1_1example_1_1foo_1_1_c =labels=Array(3): 3:foo 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"interface","visibility":"public","full_name":"org::example::foo::C","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} +=properties=JsonObject(5): +{"kind":"interface","visibility":"public","name":"C","location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","mdoc":["An interface"]} Edge @@ -1622,8 +1622,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1631,8 +1631,8 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"public","name":"THE_ANSWER","full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(2): +{"visibility":"public","name":"THE_ANSWER"} Edge @@ -1646,16 +1646,16 @@ Edge 7:MEntity 9:MProperty 10:MAttribute -=properties=JsonObject(3): -{"visibility":"public","name":"THE_ANSWER","full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(2): +{"visibility":"public","name":"THE_ANSWER"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} Edge @@ -1668,8 +1668,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#71:interfaceorg_1_1example_1_1foo_1_1_c_1a4e97061eb40b045e820de05b33c43d21 =labels=Array(4): @@ -1677,8 +1677,8 @@ Edge 7:MEntity 8:MPropDef 13:MAttributeDef -=properties=JsonObject(6): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true,"full_name":"org::example::foo::C::THE_ANSWER"} +=properties=JsonObject(5): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:25,1---1,1","visibility":"public","name":"THE_ANSWER","mdoc":["\u000e2\u00080\u0009cAnswer to the Ultimate Question of Life, the Universe, and Everything.\u000e2\u00080\u0009c"],"is_intro":true} Edge @@ -1691,8 +1691,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#0: =labels=Array(4): @@ -1700,8 +1700,8 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} Edge @@ -1715,16 +1715,16 @@ Edge 7:MEntity 9:MProperty 7:MMethod -=properties=JsonObject(4): -{"visibility":"public","is_init":false,"name":"baz","full_name":"org::example::foo::C::baz"} +=properties=JsonObject(3): +{"visibility":"public","is_init":false,"name":"baz"} ---- =to=Entity#0: =labels=Array(3): 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} Edge @@ -1737,8 +1737,8 @@ Edge 3:foo 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","full_name":"org::example::foo::C","mdoc":["An interface"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:21,1--31,1","is_intro":true,"name":"C","mdoc":["An interface"]} ---- =to=Entity#71:interfaceorg_1_1example_1_1foo_1_1_c_1a28ac7ce349ebb3e4a7747a8dd951582b =labels=Array(4): @@ -1746,8 +1746,8 @@ Edge 7:MEntity 8:MPropDef 10:MMethodDef -=properties=JsonObject(9): -{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true,"full_name":"org::example::foo::C::baz"} +=properties=JsonObject(8): +{"location":"%SOURCE_DIRECTORY%\/org\/example\/foo\/C.java:30,1--1,1","is_intern":false,"is_extern":false,"is_abstract":false,"visibility":"public","name":"baz","mdoc":["A function with implicit modifiers."],"is_intro":true} Edge diff --git a/tests/sav/neo_doxygen_dump_args6.res b/tests/sav/neo_doxygen_dump_args6.res index 65d20ff..a8b64b8 100644 --- a/tests/sav/neo_doxygen_dump_args6.res +++ b/tests/sav/neo_doxygen_dump_args6.res @@ -58,8 +58,8 @@ Edge 14:root-namespace 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"Foo","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} ---- =to=Entity#0: =labels=Array(4): @@ -67,8 +67,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"Foo","full_name":"Foo"} +=properties=JsonObject(1): +{"name":"Foo"} Edge @@ -82,16 +82,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"Foo","full_name":"Foo"} +=properties=JsonObject(1): +{"name":"Foo"} ---- =to=Entity#9:class_foo =labels=Array(3): 14:root-namespace 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"Foo","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} Edge @@ -104,8 +104,8 @@ Edge 14:root-namespace 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","is_intro":true,"name":"Foo","full_name":"Foo","mdoc":["A class in the root namespace"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","is_intro":true,"name":"Foo","mdoc":["A class in the root namespace"]} ---- =to=Entity#0: =labels=Array(4): @@ -113,8 +113,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"Foo","full_name":"Foo"} +=properties=JsonObject(1): +{"name":"Foo"} Edge @@ -127,16 +127,16 @@ Edge 14:root-namespace 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","is_intro":true,"name":"Foo","full_name":"Foo","mdoc":["A class in the root namespace"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","is_intro":true,"name":"Foo","mdoc":["A class in the root namespace"]} ---- =to=Entity#9:class_foo =labels=Array(3): 14:root-namespace 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"Foo","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} Edge @@ -179,8 +179,8 @@ Edge 14:root-namespace 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"package","full_name":"Foo","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} +=properties=JsonObject(5): +{"kind":"class","visibility":"package","name":"Foo","location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","mdoc":["A class in the root namespace"]} Edge @@ -201,8 +201,8 @@ Edge 14:root-namespace 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","is_intro":true,"name":"Foo","full_name":"Foo","mdoc":["A class in the root namespace"]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/Foo.java:19,1--19,1","is_intro":true,"name":"Foo","mdoc":["A class in the root namespace"]} ---===DONE===--- diff --git a/tests/sav/neo_doxygen_dump_args7.res b/tests/sav/neo_doxygen_dump_args7.res index 308f58a..8f38f44 100644 --- a/tests/sav/neo_doxygen_dump_args7.res +++ b/tests/sav/neo_doxygen_dump_args7.res @@ -58,8 +58,8 @@ Edge 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} ---- =to=Entity#0: =labels=Array(4): @@ -67,8 +67,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"OuterClass","full_name":"OuterClass"} +=properties=JsonObject(1): +{"name":"OuterClass"} Edge @@ -82,16 +82,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"OuterClass","full_name":"OuterClass"} +=properties=JsonObject(1): +{"name":"OuterClass"} ---- =to=Entity#17:class_outer_class =labels=Array(3): 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} Edge @@ -104,8 +104,8 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","full_name":"OuterClass","mdoc":["A class with an inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","mdoc":["A class with an inner class."]} ---- =to=Entity#0: =labels=Array(4): @@ -113,8 +113,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"OuterClass","full_name":"OuterClass"} +=properties=JsonObject(1): +{"name":"OuterClass"} Edge @@ -127,16 +127,16 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","full_name":"OuterClass","mdoc":["A class with an inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","mdoc":["A class with an inner class."]} ---- =to=Entity#17:class_outer_class =labels=Array(3): 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} Edge @@ -149,8 +149,8 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","full_name":"OuterClass","mdoc":["A class with an inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","mdoc":["A class with an inner class."]} ---- =to=Entity#0: =labels=Array(4): @@ -158,8 +158,8 @@ Edge 7:MEntity 9:MProperty 11:MInnerClass -=properties=JsonObject(3): -{"visibility":"public","full_name":"OuterClass::InnerClass","name":"InnerClass"} +=properties=JsonObject(2): +{"visibility":"public","name":"InnerClass"} Edge @@ -173,16 +173,16 @@ Edge 7:MEntity 9:MProperty 11:MInnerClass -=properties=JsonObject(3): -{"visibility":"public","full_name":"OuterClass::InnerClass","name":"InnerClass"} +=properties=JsonObject(2): +{"visibility":"public","name":"InnerClass"} ---- =to=Entity#0: =labels=Array(3): 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","full_name":"OuterClass","mdoc":["A class with an inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","mdoc":["A class with an inner class."]} Edge @@ -195,8 +195,8 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","full_name":"OuterClass","mdoc":["A class with an inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","mdoc":["A class with an inner class."]} ---- =to=Entity#0: =labels=Array(4): @@ -204,8 +204,8 @@ Edge 7:MEntity 8:MPropDef 14:MInnerClassDef -=properties=JsonObject(5): -{"location":"\/dev\/null:1,1--1,1","full_name":"OuterClass::InnerClass","name":"InnerClass","visibility":"public","is_intro":true} +=properties=JsonObject(4): +{"location":"\/dev\/null:1,1--1,1","name":"InnerClass","visibility":"public","is_intro":true} Edge @@ -219,8 +219,8 @@ Edge 7:MEntity 8:MPropDef 14:MInnerClassDef -=properties=JsonObject(5): -{"location":"\/dev\/null:1,1--1,1","full_name":"OuterClass::InnerClass","name":"InnerClass","visibility":"public","is_intro":true} +=properties=JsonObject(4): +{"location":"\/dev\/null:1,1--1,1","name":"InnerClass","visibility":"public","is_intro":true} ---- =to=Entity#0: =labels=Array(4): @@ -228,8 +228,8 @@ Edge 7:MEntity 9:MProperty 11:MInnerClass -=properties=JsonObject(3): -{"visibility":"public","full_name":"OuterClass::InnerClass","name":"InnerClass"} +=properties=JsonObject(2): +{"visibility":"public","name":"InnerClass"} Edge @@ -243,16 +243,16 @@ Edge 7:MEntity 8:MPropDef 14:MInnerClassDef -=properties=JsonObject(5): -{"location":"\/dev\/null:1,1--1,1","full_name":"OuterClass::InnerClass","name":"InnerClass","visibility":"public","is_intro":true} +=properties=JsonObject(4): +{"location":"\/dev\/null:1,1--1,1","name":"InnerClass","visibility":"public","is_intro":true} ---- =to=Entity#0: =labels=Array(3): 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} Edge @@ -266,16 +266,16 @@ Edge 7:MEntity 9:MProperty 11:MInnerClass -=properties=JsonObject(3): -{"visibility":"public","full_name":"OuterClass::InnerClass","name":"InnerClass"} +=properties=JsonObject(2): +{"visibility":"public","name":"InnerClass"} ---- =to=Entity#33:class_outer_class_1_1_inner_class =labels=Array(3): 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass::InnerClass","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} Edge @@ -288,8 +288,8 @@ Edge 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass::InnerClass","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} ---- =to=Entity#0: =labels=Array(4): @@ -297,8 +297,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass"} +=properties=JsonObject(1): +{"name":"OuterClass::InnerClass"} Edge @@ -312,16 +312,16 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass"} +=properties=JsonObject(1): +{"name":"OuterClass::InnerClass"} ---- =to=Entity#33:class_outer_class_1_1_inner_class =labels=Array(3): 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass::InnerClass","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} Edge @@ -334,8 +334,8 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} ---- =to=Entity#0: =labels=Array(4): @@ -343,8 +343,8 @@ Edge 7:MEntity 5:MType 10:MClassType -=properties=JsonObject(2): -{"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass"} +=properties=JsonObject(1): +{"name":"OuterClass::InnerClass"} Edge @@ -357,16 +357,16 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} ---- =to=Entity#33:class_outer_class_1_1_inner_class =labels=Array(3): 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass::InnerClass","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} Edge @@ -409,8 +409,8 @@ Edge 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","mdoc":["A class with an inner class."]} Edge @@ -431,8 +431,8 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","full_name":"OuterClass","mdoc":["A class with an inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:19,1--24,1","is_intro":true,"name":"OuterClass","mdoc":["A class with an inner class."]} Edge @@ -453,8 +453,8 @@ Edge 11:inner-class 7:MEntity 6:MClass -=properties=JsonObject(6): -{"kind":"class","visibility":"public","full_name":"OuterClass::InnerClass","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(5): +{"kind":"class","visibility":"public","name":"OuterClass::InnerClass","location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","mdoc":["An instance (non-static) inner class."]} Edge @@ -475,8 +475,8 @@ Edge 11:inner-class 7:MEntity 9:MClassDef -=properties=JsonObject(5): -{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","full_name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} +=properties=JsonObject(4): +{"location":"%SOURCE_DIRECTORY%\/OuterClass.java:23,1--23,1","is_intro":true,"name":"OuterClass::InnerClass","mdoc":["An instance (non-static) inner class."]} ---===DONE===--- -- 1.7.9.5