File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
csharp/ql/lib/semmle/code/csharp/controlflow/internal Expand file tree Collapse file tree 1 file changed +5
-3
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 ( ) and
44+ none ( )
4445 } or
4546 TExceptionHandlerSplit ( ExceptionClass ec ) or
4647 TBooleanSplit ( BooleanSplitting:: BooleanSplitSubKind kind , boolean branch ) {
4748 kind .startsSplit ( _) and
48- branch in [ false , true ]
49+ branch in [ false , true ] and
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