* */
| 178 | * |
| 179 | */ |
| 180 | static void |
| 181 | OutputStandardFuncName(eUnaryOps eFunc, std::ostream &out) |
| 182 | { |
| 183 | switch (eFunc) { |
| 184 | // Math Ops |
| 185 | case ePlus: out << "+"; break; |
| 186 | case eMinus: out << "-"; break; |
| 187 | |
| 188 | // Logical Ops |
| 189 | case eNot: out << "!"; break; |
| 190 | |
| 191 | // Bitwise Ops |
| 192 | case eBitNot: out << "~"; break; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | bool |
| 197 | FunctionInvocationUnary::safe_invocation() const |
no outgoing calls
no test coverage detected