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 {
12911291class SsaDefinitionNode extends SsaNode {
12921292 override SsaImpl:: DataFlowIntegration:: SsaDefinitionNode node ;
12931293
1294- SsaImpl :: Definition getDefinition ( ) { result = node .getDefinition ( ) }
1294+ Ssa :: Definition getDefinition ( ) { result = node .getDefinition ( ) }
12951295
12961296 override ControlFlow:: Node getControlFlowNodeImpl ( ) {
1297- result = this .getDefinition ( ) .( Ssa :: Definition ) . getControlFlowNode ( )
1297+ result = this .getDefinition ( ) .getControlFlowNode ( )
12981298 }
12991299}
13001300
@@ -1688,7 +1688,7 @@ private module ReturnNodes {
16881688
16891689 OutRefReturnNode ( ) {
16901690 exists ( Parameter p |
1691- this .getDefinition ( ) .( Ssa :: Definition ) . isLiveOutRefParameterDefinition ( p ) and
1691+ this .getDefinition ( ) .isLiveOutRefParameterDefinition ( p ) and
16921692 kind .getPosition ( ) = p .getPosition ( )
16931693 |
16941694 p .isOut ( ) and kind instanceof OutReturnKind
You can’t perform that action at this time.
0 commit comments