| 36 | { |
| 37 | |
| 38 | ExpressionStatement makeDiscardCall( |
| 39 | langutil::DebugData::ConstPtr const& _debugData, |
| 40 | BuiltinHandle const& _discardFunction, |
| 41 | Expression&& _expression |
| 42 | ) |
| 43 | { |
| 44 | return {_debugData, FunctionCall{ |
| 45 | _debugData, |
| 46 | BuiltinName{_debugData, _discardFunction}, |
| 47 | {std::move(_expression)} |
| 48 | }}; |
| 49 | } |
| 50 | |
| 51 | void removeEmptyDefaultFromSwitch(Switch& _switchStmt) |
| 52 | { |
no outgoing calls
no test coverage detected