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 9f1332b commit ee83ad7Copy full SHA for ee83ad7
swift/ql/src/queries/Summary/RegexEvals.ql
@@ -0,0 +1,15 @@
1
+/**
2
+ * @name Regular Expression Evaluations
3
+ * @description List all regular expression evaluations found in the database.
4
+ * @kind problem
5
+ * @problem.severity info
6
+ * @id swift/summary/regex-evals
7
+ * @tags summary
8
+ */
9
+
10
+import swift
11
+import codeql.swift.regex.Regex
12
13
+from RegexEval e
14
+select e,
15
+ "Regular expression evaluation with " + count(e.getARegex()).toString() + " associated regex(s)"
0 commit comments