| 860 | }; |
| 861 | |
| 862 | void WebAssemblyFunctionSettings::trySet(const String & name, Field value) |
| 863 | { |
| 864 | WebAssemblyFunctionSettingsConstraits::instance().normalizeAndCheck(name, value); |
| 865 | settings.emplace(name, std::move(value)); |
| 866 | } |
| 867 | |
| 868 | Field WebAssemblyFunctionSettings::getValue(const String & name) const |
| 869 | { |
no test coverage detected