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 de2d23b commit 3a66b04Copy full SHA for 3a66b04
csharp/ql/src/semmle/code/csharp/ir/IRConfiguration.qll
@@ -5,6 +5,7 @@
5
import csharp
6
7
private newtype TIRConfiguration = MkIRConfiguration()
8
+private import semmle.code.csharp.ir.internal.IRCSharpLanguage as Language
9
10
/**
11
* The query can extend this class to control which functions have IR generated for them.
@@ -16,4 +17,6 @@ class IRConfiguration extends TIRConfiguration {
16
17
* Holds if IR should be created for callable `callable`. By default, holds for all callables.
18
*/
19
predicate shouldCreateIRForFunction(Callable callable) { any() }
20
+
21
+ predicate shouldEvaluateDebugStringsForFunction(Language::Function func) { any() }
22
}
0 commit comments