| 31 | */ |
| 32 | |
| 33 | bool CCallVariable::isSet() |
| 34 | { |
| 35 | if (M_type == E_VT_REGEXP) { |
| 36 | if(M_nbOfMatchingValue >= 1) |
| 37 | return(true); |
| 38 | else |
| 39 | return(false); |
| 40 | } else if (M_type == E_VT_BOOL) { |
| 41 | return M_bool; |
| 42 | } else if (M_type == E_VT_DOUBLE) { |
| 43 | return M_double; |
| 44 | } |
| 45 | return (M_type != E_VT_UNDEFINED); |
| 46 | } |
| 47 | |
| 48 | bool CCallVariable::isDouble() |
| 49 | { |
no outgoing calls
no test coverage detected