We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ceb316d + 4eabca6 commit 17b063fCopy full SHA for 17b063f
java/ql/src/config/semmlecode.dbscheme
@@ -818,4 +818,29 @@ xmllocations(
818
819
@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace;
820
821
+/*
822
+ * configuration files with key value pairs
823
+ */
824
+
825
+configs(
826
+ unique int id: @config
827
+);
828
829
+configNames(
830
+ unique int id: @configName,
831
+ int config: @config ref,
832
+ string name: string ref
833
834
835
+configValues(
836
+ unique int id: @configValue,
837
838
+ string value: string ref
839
840
841
+configLocations(
842
+ int locatable: @configLocatable ref,
843
+ int location: @location_default ref
844
845
846
+@configLocatable = @config | @configName | @configValue;
0 commit comments