Explorar el Código

LibJS: Avoid StringView->DeprecatedFlyString conversions in FDI

Andreas Kling hace 1 año
padre
commit
9ccf25fdbe
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h

+ 1 - 1
Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h

@@ -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<>