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 6748f38 commit c30d1a6Copy full SHA for c30d1a6
cpp/ql/test/library-tests/dataflow/fields/partial-definition-diff.ql
@@ -8,10 +8,14 @@ import semmle.code.cpp.dataflow.DataFlow::DataFlow as AST
8
import Nodes
9
10
class ASTPartialDefNode extends ASTNode {
11
+ ASTPartialDefNode() { exists(n.asPartialDefinition()) }
12
+
13
override string toString() { result = n.asPartialDefinition().toString() }
14
}
15
16
class IRPartialDefNode extends IRNode {
17
+ IRPartialDefNode() { exists(n.asPartialDefinition()) }
18
19
20
21
0 commit comments