| 216 | } |
| 217 | |
| 218 | static Result<Value> getJsModulePropertyAsValue( |
| 219 | Runtime* runtime, |
| 220 | const std::shared_ptr<snap::valdi_core::JSRuntimeNativeObjectsManager>& nativeObjectsManager, |
| 221 | std::string_view moduleName, |
| 222 | std::string_view propertyName) { |
| 223 | return getJsModulePropertyWithSchema(runtime, nativeObjectsManager, nullptr, moduleName, propertyName, "u"); |
| 224 | } |
| 225 | |
| 226 | static Result<Ref<ValueFunction>> getJsModulePropertyAsUntypedFunction( |
| 227 | Runtime* runtime, |
no test coverage detected