We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de8934 commit 1c7f6dcCopy full SHA for 1c7f6dc
ruby/ql/src/queries/meta/SummarizedCallableCallSites.ql
@@ -0,0 +1,16 @@
1
+/**
2
+ * @name Summarized callable call sites
3
+ * @description A call site for which we have a summarized callable
4
+ * @kind problem
5
+ * @problem.severity recommendation
6
+ * @id rb/meta/summarized-callable-call-sites
7
+ * @tags meta
8
+ * @precision very-low
9
+ */
10
+
11
+import codeql.ruby.AST
12
+import codeql.ruby.dataflow.FlowSummary
13
14
+from Call invoke, SummarizedCallable f
15
+where f.getACall() = invoke or f.getACallSimple() = invoke
16
+select invoke, "Call to " + f
0 commit comments