File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
csharp/ql/src/semmle/code/csharp/dataflow/internal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ class Node extends TNode {
4747 cached
4848 final DataFlowCallable getEnclosingCallable ( ) {
4949 Stages:: DataFlowStage:: forceCachingInSameStage ( ) and
50- result = unique ( DataFlowCallable c | c = this .( NodeImpl ) .getEnclosingCallableImpl ( ) | c )
50+ result = this .( NodeImpl ) .getEnclosingCallableImpl ( )
5151 }
5252
5353 /** Gets the control flow node corresponding to this node, if any. */
5454 cached
5555 final ControlFlow:: Node getControlFlowNode ( ) {
5656 Stages:: DataFlowStage:: forceCachingInSameStage ( ) and
57- result = unique ( ControlFlow :: Node n | n = this .( NodeImpl ) .getControlFlowNodeImpl ( ) | n )
57+ result = this .( NodeImpl ) .getControlFlowNodeImpl ( )
5858 }
5959
6060 /** Gets a textual representation of this node. */
You can’t perform that action at this time.
0 commit comments