| 50 | } |
| 51 | |
| 52 | int PendingMessage::PushLine(std::string msg) { |
| 53 | assert(!HasChoices()); |
| 54 | assert(!HasNumberInput()); |
| 55 | return PushLineImpl(std::move(msg)); |
| 56 | } |
| 57 | |
| 58 | int PendingMessage::PushChoice(std::string msg, bool enabled) { |
| 59 | assert(!HasNumberInput()); |
no outgoing calls
no test coverage detected