| 571 | } |
| 572 | |
| 573 | int Script::ConvertResultToJsonValue(const IECommandExecutor& executor, |
| 574 | Json::Value* value) { |
| 575 | LOG(TRACE) << "Entering Script::ConvertResultToJsonValue"; |
| 576 | IECommandExecutor& mutable_executor = const_cast<IECommandExecutor&>(executor); |
| 577 | return this->ConvertResultToJsonValue(mutable_executor.element_manager(), value); |
| 578 | } |
| 579 | |
| 580 | int Script::ConvertResultToJsonValue(IElementManager* element_manager, |
| 581 | Json::Value* value) { |
no test coverage detected