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
Copy file name to clipboardExpand all lines: cypher/External_Dependencies/Label_external_types_and_annotations.cypher
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
// Label external types and external annotations. Requires 'Label_base_java_types', 'Label_buildin_java_types' and 'Label_resolved_duplicate_types' of 'Types' directory.
2
2
3
-
MATCH (type:Type&!PrimitiveType&!Void&!JavaType&!ResolvedDuplicateType)
3
+
MATCH (type:Type&!PrimitiveType&!Void&!JavaType&!ResolvedDuplicateType&!TS)
Copy file name to clipboardExpand all lines: cypher/Typescript_Enrichment/Add_RESOLVES_TO_relationship_for_matching_modules.cypher
+58-13Lines changed: 58 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,66 @@
3
3
// Inspired by https://github.com/jQAssistant/jqassistant/blob/4cd7face5d6d2953449d8e6ff5b484f00ffbdc2f/plugin/java/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
4
4
// Related to https://github.com/jqassistant-plugin/jqassistant-typescript-plugin/issues/35
5
5
6
-
MATCH (module:TS:Module)
7
-
WHEREmodule.globalFqnISNOTNULL
6
+
MATCH (module:TS:Module)<-[:CONTAINS]-(package:TS:Project)
7
+
WHEREmodule.globalFqnISNOTNULL
8
+
ANDEXISTS{ (module)-[:EXPORTS]->(:TS) }// only when module exports something
0 commit comments