| 37 | |
| 38 | |
| 39 | bool hasLabels ( const ExprBlock * block ) { |
| 40 | for ( auto & be : block->list ) { |
| 41 | if ( be->rtti_isLabel() ) { |
| 42 | return true; |
| 43 | } |
| 44 | } |
| 45 | return false; |
| 46 | } |
| 47 | |
| 48 | bool exprReturns ( ExpressionPtr expr ) { |
| 49 | if ( expr->rtti_isReturn() ) { |
no outgoing calls
no test coverage detected