File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
csharp/ql/lib/semmle/code/csharp/dataflow/internal Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1291,10 +1291,10 @@ class SsaNode extends NodeImpl, TSsaNode {
1291
1291
class SsaDefinitionNode extends SsaNode {
1292
1292
override SsaImpl:: DataFlowIntegration:: SsaDefinitionNode node ;
1293
1293
1294
- SsaImpl :: Definition getDefinition ( ) { result = node .getDefinition ( ) }
1294
+ Ssa :: Definition getDefinition ( ) { result = node .getDefinition ( ) }
1295
1295
1296
1296
override ControlFlow:: Node getControlFlowNodeImpl ( ) {
1297
- result = this .getDefinition ( ) .( Ssa :: Definition ) . getControlFlowNode ( )
1297
+ result = this .getDefinition ( ) .getControlFlowNode ( )
1298
1298
}
1299
1299
}
1300
1300
@@ -1688,7 +1688,7 @@ private module ReturnNodes {
1688
1688
1689
1689
OutRefReturnNode ( ) {
1690
1690
exists ( Parameter p |
1691
- this .getDefinition ( ) .( Ssa :: Definition ) . isLiveOutRefParameterDefinition ( p ) and
1691
+ this .getDefinition ( ) .isLiveOutRefParameterDefinition ( p ) and
1692
1692
kind .getPosition ( ) = p .getPosition ( )
1693
1693
|
1694
1694
p .isOut ( ) and kind instanceof OutReturnKind
You can’t perform that action at this time.
0 commit comments