You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import ast.Visitor;
public class Normalizer {
visitors = new ArrayList<>();
visitors.add(new VisitorA ());
public class VisitorA extends Visitor{
}
}
In this case, VisitorA will not generate a link with Normalizer;
At the same time, imported ast.Visitor identified as node<ast.Visitor>in dependency_graph, and identified as node <visitor> in inheritance_graph. This causes the repeatedly appearing node to in complete_graph.
I haven`t tested in other language.
The text was updated successfully, but these errors were encountered:
import ast.Visitor;
public class Normalizer {
visitors = new ArrayList<>();
visitors.add(new VisitorA ());
public class VisitorA extends Visitor{
}
}
In this case, VisitorA will not generate a link with Normalizer; At the same time, imported ast.Visitor identified as node<ast.Visitor>in dependency_graph, and identified as node <visitor> in inheritance_graph. This causes the repeatedly appearing node to in complete_graph.
@HickeyHsu Thanks for the feedback. I'll have a closer look at the issues and try to give you feedback in the following days. Probably this is the case, since the parsers can't really handle nested structures (yet) to extract them in a recursive way. I'll have a look at your modifications, looking forward 👋.
For example:
In this case,
VisitorA
will not generate a link withNormalizer
;At the same time, imported
ast.Visitor
identified asnode<ast.Visitor>
in dependency_graph, and identified asnode <visitor>
in inheritance_graph. This causes the repeatedly appearing node to in complete_graph.I haven`t tested in other language.
The text was updated successfully, but these errors were encountered: