| 392 | } |
| 393 | |
| 394 | vector<string> TokenizeDebugActionParams(const string& action) { |
| 395 | vector<string> tokens; |
| 396 | split(tokens, action, is_any_of("@"), token_compress_on); |
| 397 | return tokens; |
| 398 | } |
| 399 | |
| 400 | /// Helper to DebugActionImpl(). Given a probability as a string (e.g. "0.3"), |
| 401 | /// determine whether the action should be executed, as returned in 'should_execute'. |
no outgoing calls
no test coverage detected