-------------------------------------------------------------------------------
| 61 | |
| 62 | //------------------------------------------------------------------------------- |
| 63 | emscripten::val vtkRemoteSession::Get(vtkTypeUInt32 object) |
| 64 | { |
| 65 | |
| 66 | vtkSessionUpdateStateFromObject(this->Session, object); |
| 67 | auto propertiesImpl = vtkSessionGetState(this->Session, object); |
| 68 | auto result = std::move(propertiesImpl->JsonValue); |
| 69 | delete propertiesImpl; |
| 70 | return result; |
| 71 | } |
| 72 | |
| 73 | //------------------------------------------------------------------------------- |
| 74 | void vtkRemoteSession::SkipProperty(const std::string& className, const std::string& propertyName) |
no test coverage detected