We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6dc36b commit 858c7ceCopy full SHA for 858c7ce
1 file changed
ruby/ql/consistency-queries/AstConsistency.ql
@@ -1,5 +1,6 @@
1
import codeql.ruby.AST
2
import codeql.ruby.ast.internal.Synthesis
3
+import codeql.ruby.Diagnostics
4
5
query predicate missingParent(AstNode node, string cls) {
6
not exists(node.getParent()) and
@@ -28,3 +29,5 @@ query predicate multipleToString(AstNode n, string s) {
28
29
s = strictconcat(n.toString(), ",") and
30
strictcount(n.toString()) > 1
31
}
32
+
33
+query predicate extractionError(ExtractionError error) { any() }
0 commit comments