1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

LibJS: Avoid StringView->DeprecatedFlyString conversions in FDI

This commit is contained in:
Andreas Kling 2023-09-19 07:17:27 +02:00
parent e32a597d78
commit 9ccf25fdbe

View file

@ -151,7 +151,7 @@ private:
Vector<FunctionDeclaration const&> m_functions_to_initialize;
bool m_arguments_object_needed { false };
Vector<VariableNameToInitialize> m_var_names_to_initialize_binding;
Vector<StringView> m_function_names_to_initialize_binding;
Vector<DeprecatedFlyString> m_function_names_to_initialize_binding;
};
template<>