| 80 | } |
| 81 | |
| 82 | var ModuleRouterValue::getJSONData(bool includeNonOverriden) |
| 83 | { |
| 84 | var data = BaseItem::getJSONData(includeNonOverriden); |
| 85 | |
| 86 | data.getDynamicObject()->setProperty("customName", niceName); |
| 87 | if (sourceValue != nullptr) data.getDynamicObject()->setProperty("niceName", sourceValue->niceName); |
| 88 | |
| 89 | if (routeParams != nullptr) data.getDynamicObject()->setProperty("routeParams", routeParams->getJSONData()); |
| 90 | return data; |
| 91 | } |
| 92 | |
| 93 | void ModuleRouterValue::loadJSONDataInternal(var data) |
| 94 | { |
no outgoing calls
no test coverage detected