File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
csharp/ql/lib/semmle/code/csharp/controlflow/internal Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,16 @@ private module Cached {
4040 success in [ false , true ]
4141 } or
4242 TFinallySplit ( FinallySplitting:: FinallySplitType type , int nestLevel ) {
43- nestLevel = any ( Statements:: TryStmtTree t ) .nestLevel ( )
43+ // nestLevel = any(Statements::TryStmtTree t).nestLevel()
44+ none ( )
4445 } or
4546 TExceptionHandlerSplit ( ExceptionClass ec ) or
4647 TBooleanSplit ( BooleanSplitting:: BooleanSplitSubKind kind , boolean branch ) {
47- kind .startsSplit ( _) and
48- branch in [ false , true ]
48+ // kind.startsSplit(_) and
49+ // branch in [false, true]
50+ none ( )
4951 } or
50- TLoopSplit ( LoopSplitting:: AnalyzableLoopStmt loop )
52+ TLoopSplit ( LoopSplitting:: AnalyzableLoopStmt loop ) { none ( ) }
5153}
5254
5355import Cached
You can’t perform that action at this time.
0 commit comments