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 938069d commit 689a34bCopy full SHA for 689a34b
powershell/ql/lib/semmle/code/powershell/dataflow/internal/DataFlowPublic.qll
@@ -450,3 +450,12 @@ class CallNode extends AstNode {
450
451
int getNumberOfArguments() { result = call.getNumberOfArguments() }
452
}
453
+
454
+/** A use of a type name, viewed as a node in a data flow graph. */
455
+class TypeNameNode extends ExprNode {
456
+ override CfgNodes::ExprNodes::TypeNameCfgNode n;
457
458
+ final override CfgNodes::ExprNodes::TypeNameCfgNode getExprNode() { result = n }
459
460
+ string getTypeName() { result = n.getTypeName() }
461
+}
0 commit comments