| 443 | } |
| 444 | |
| 445 | void ScriptParam::SetString(const std::string &val) { |
| 446 | type_ = STRING; |
| 447 | str_val_ = val; |
| 448 | editor_.SetTextField(); |
| 449 | } |
| 450 | |
| 451 | void ScriptParam::SetJSONFromString(const std::string &val) { |
| 452 | type_ = JSON; |
no test coverage detected